gpt4 book ai didi

PHP MySQL : inserting Json response values into database by iterating through loops

转载 作者:太空宇宙 更新时间:2023-11-03 11:59:58 25 4
gpt4 key购买 nike

我有一个 JSON 响应,我想将其存储在数据库中。但是在这里我无法循环遍历内部循环中的值。

JSON 推特数据:

Array
(
[0] => stdClass Object
(
[created_at] => Thu Apr 23 05:23:39 +0000 2015
[id_str] => 591110161239945216
[entities] => stdClass Object
(
[hashtags] => Array
(
[0] => stdClass Object
(
[text] => HelloWorld
[indices] => Array
(
[0] => 0
[1] => 11
)
)
)
)
)
)

我在这里尝试访问 [text]=>helloworld 字段并将其插入数据库。我想使用 while 遍历循环。但如果没有发布主题标签,这会返回一个错误。

代码:

i=0
while($i<3)
{
$tweet_id = $json[$i]->id_str;
$created_at = $json[$i]->created_at;
$hashtag_text = $json[$i]->entities->hashtags[$i]->text;

$this->sql="INSERT INTO twitter_scan('tweetid','created_at','hashtag_text'). VALUES('$tweet_id','$created_at','$hashtag_text')";
$this->query=mysqli_query($this->conn,$this->sql);
$i++;
}

我的帐户中有 3 条推文,其中 1 条推文带有#hashtag,另外两条是纯文本。当我运行我的代码时,对于第一次迭代它运行良好,但是对于第 2 次和第 3 次迭代它返回一个错误 PHP Notice:Undefined offset: 1 , PHP Notice:Undefined offset: 2

这是因为我的另外两条推文不包含主题标签,但我的代码仍在尝试访问它。当这个字段没有值时,我想将 NULL 值存储到数据库中。我怎样才能做到这一点?

感谢您的帮助。

最佳答案

只有一个标签,所以它会在 0 上,第 2 和第 3 个循环 $i 会是 12 不存在。将 $i 替换为 0 并为其添加检查,否则将空白存储到 $hashtag_text。尝试 -

$hashtag_text = !empty($json[$i]->entities->hashtags[0]->text) ? $json[$i]->entities->hashtags[0]->text : '';

关于PHP MySQL : inserting Json response values into database by iterating through loops,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29935411/

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