gpt4 book ai didi

php - json_decode file_get_contents 问题

转载 作者:行者123 更新时间:2023-12-04 06:16:04 25 4
gpt4 key购买 nike

好的,下面的 php 代码工作正常

<?php
$json = file_get_contents('http://tiny.cc/example22');

$obj = json_decode($json);
$example = $obj->{'screen_name'};
?>

User: <?php echo $example; ?>

它显示了我想要的屏幕名称“muffinlosers”

但是,如果我将“screen_name”更改为“total_coins”,为什么它不显示总硬币数?

我需要这方面的帮助,我只想显示总硬币数

谢谢

最佳答案


$obj->experience->total_coins;

还有,这

$example = $obj->{'screen_name'};



应该只是
$example = $obj->screen_name;

关于php - json_decode file_get_contents 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7238468/

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