使用PHP将twitter搜索API中的tweets保存到MySQL数据库中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用PHP将twitter搜索API中的tweets保存到MySQL数据库中相关的知识,希望对你有一定的参考价值。
[Related SQL query to create the storage table](http://snipplr.com/view/56995/sql-query-to-create-a-table-in-mysql-to-store-tweets/ "Related SQL query to create the storage table")
<?php $q = $_GET["q"]; // query string if($jsonobj != null){ if (!$con){ } foreach($jsonobj->results as $item){ $id = $item->id; $created_at = $item->created_at; $from_user_id = $item->from_user_id; $geo = $item->geo; $iso_language_code = $item->iso_language_code; $to_user_id = $item->to_user_id; if($to_user_id==""){ $to_user_id = 0; } // SQL query to create table available at http://snipplr.com/view/56995/sql-query-to-create-a-table-in-mysql-to-store-tweets/ $query = "INSERT into tweets VALUES ($id,'$mysqldate','$from_user',$from_user_id,'$text','$source','$geo','$iso_language_code','$profile_image_url',$to_user_id,'$q')"; } } ?>
以上是关于使用PHP将twitter搜索API中的tweets保存到MySQL数据库中的主要内容,如果未能解决你的问题,请参考以下文章
Twitter-打印用户的最新tweet(摘自PHP中的RSS提要和linkifies链接)