我有這段代碼,但它不起作用。它什麼都沒顯示。PHP:如何獲得標題和描述Google Book Api?
<?php
$item = file_get_contents('https://www.googleapis.com/books/v1/volumes?q=Bowling Alone&maxResults=1');
$booktitle = (isset($item->volumeInfo->title) ? $item->volumeInfo->title : false);
$description = (isset($item->volumeInfo->description) ? $item->volumeInfo->description : false);
echo "<b>Title:</b> " . $booktitle;
echo "<b>Description:</b> " . $description;
?>
所以,請幫我解決它!另外,這是以更快的速度獲得內容的方法嗎?非常感謝你 !
沒有人能幫助我嗎? – Ban