gpt4 book ai didi

php - json_decode 响应是否为空

转载 作者:行者123 更新时间:2023-11-29 14:08:12 27 4
gpt4 key购买 nike

我刚刚开始真正使用 json,并尝试尽我所能地学习!我想分享我所做的这项工作,我觉得这可能需要一些改进,如果不是大部分的话。

好吧,我使用 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());
}

最佳答案

显然您想要将未出现在 API 结果中的 channel 标记为离线,而另一种方式是将仍然出现的 channel 标记为在线。

首先是评论中已经说过的一条注释。 请不要再使用PHP的mysql扩展。这已被弃用,并将在未来版本的 PHP 中删除 我推荐 MySQLi:http://php.net/manual/en/book.mysqli.php

当前您正在为每个 channel 获取数据,这当然会减慢进程并不必要地增加 justin.tv 服务器的负载。

查询状态时,限制是 GET 请求的最大大小,在大多数服务器上为 8192 字节。

现在,您可以将所有 channel 视为离线,然后循环遍历结果并再次将结果中的 channel 标记为在线,而不是检查结果是否为空。在数组或对象(可以是为 channel 列表获取的数据库结果)中执行此操作,并在一个查询中更新所有 channel 。

关于php - json_decode 响应是否为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14001867/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com