我已经尝试了 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 = Httpful\Request::get($url)
->expectsJson()
->send();
echo "{$response[0]['id']}";
?>