数组中的 httpful JSON



我已经尝试了 3 天,让 PHP 使用 PHP 和 httpful 显示此测试 JSON 中的 ID。

任何人都有任何想法,因为我尝试了大量不同的组合,甚至尝试创建一个处理程序来解码为数组......我只是在PHP上很烂?

// Make a request to the GitHub API with a custom
// header of "X-Trvial-Header: Just as a demo".
<?php
include('httpful.phar');
$url = "https://jsonplaceholder.typicode.com/posts";
$response = HttpfulRequest::get($url)
->expectsJson()
->send();
echo "{$response[0]['id']}";
?>

我的输出...还是一无所有

您没有正确索引返回值。

响应是混合值。因此,您应该执行以下操作来获得所需的内容。

<?php
include('httpful.phar');
$url = "https://jsonplaceholder.typicode.com/posts";
$response = HttpfulRequest::get($url)
->expectsJson()
->send();
echo $response->body[0]->id;
?>

相关内容

  • 没有找到相关文章