我剛開始使用json進行實際工作,並試圖儘可能地學習!我想分享我所做的這項工作,我覺得這可能需要一些改進,如果不是很多。json_decode響應是否爲空
那麼好吧,我用twitch.tv REST_API。這是我的代碼。基本上我想通過我的網絡託管公司運行這個每分鐘作爲一個crontab。我知道你可以通過這種方式獲得(編碼)JSON數據:「http://api.justin.tv/api/stream/list.json?channel=example,example2,example3」;以及。它可能更快?但後來我不知道如何在數據庫中設置我的流離線。
所以我想我是問我如何能改善這一點。
$result = mysql_query("SELECT streamname FROM streams") or die(mysql_error());
$ids=array();
while($row = mysql_fetch_assoc($result))
{
$ids[]=$row["streamname"];
}
$mycurl = curl_init();
for($i=0;$i<count($ids);$i++)
{
curl_setopt ($mycurl, CURLOPT_HEADER, 0);
curl_setopt ($mycurl, CURLOPT_RETURNTRANSFER, 1);
$url = "http://api.justin.tv/api/stream/list.json?channel=$ids[$i]";
curl_setopt ($mycurl, CURLOPT_URL, $url);
$web_response = curl_exec($mycurl);
$result = json_decode($web_response);
if(empty($result))
{
$sql = "UPDATE streams SET online = '0' WHERE streamname = '" . $ids[$i] . "'";
}
else
{
$sql = "UPDATE streams SET online = '1' WHERE streamname = '" . $ids[$i] . "'";
}
mysql_query($sql) or die(mysql_error());
}
您正在使用[an **過時的**數據庫API](http://stackoverflow.com/q/12859942/19068)並應使用[現代替換](http://php.net/manual/) EN/mysqlinfo.api.choosing.php)。你也**易受[SQL注入攻擊](http://bobby-tables.com/)**,現代的API會使[防禦]更容易(http://stackoverflow.com/questions/60174/best-way-to-prevent-sql-injection-in-php)自己從。 – Quentin