私はPHPとHTTPfulを使用してこのテストJSONからIDを表示するためにPHPを取得するために3日間試してきました。配列内のHttpful JSON
私はさまざまな組み合わせを試したことがあり、配列としてデコードするハンドラを作成しようとした人もいます...私はちょうど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']}";
?>
私の最後のコメントを無視してください!私はそれを削除しました – Yazan