如何使用file_get_contents
訪問網頁並獲取顯示在其上的圖像的鏈接?如何從網址獲取圖像鏈接
在https://www.roblox.com/thumbnail/asset?assetId=169454280&thumbnailFormatId=254的頁面,這行代碼會導致顯示圖像:
<img class='' src='https://t0.rbxcdn.com/5d4449ed656bd92c4d51805ff8b72610' />
我試圖用file_get_contents
去這個鏈接,進去src
圖像鏈接,但我不斷收到這錯誤:
Object of class DOMNodeList could not be converted to string
$dom = new DOMDocument();
$html = file_get_contents('https://www.roblox.com/thumbnail/asset?assetId=169454280&thumbnailFormatId=254');
$dom->loadHTML($html);
$dom->preserveWhiteSpace = false;
echo $dom->getElementsByTagName('img');
我已經打了陣列來解決問題,謝謝指出。 –
感謝您的回答。在頁面上只會有一個圖片,我可以確認總會有一個圖片 –
很酷,我的答案完成後我刪除了重複的投票 –