使用php腳本生成Identicons。 使用<img>
優良工程直接保存使用php生成的圖像
$input="create_image/identicon.php?size=48&hash=$hashvalue";
$output=$username."_userimage.png";
此作品顯示結果:
echo "<img src='$input'>";
但這並不:(它只是創建一個空文件)
file_put_contents($output, file_get_contents($input));
,並拋出一個no such file or directory
異常,它與用於顯示圖像的src屬性的url相同。
試圖保存它的問題是什麼?
林不知道這個問題是否是file_put_contents
或file_get_contents
將全限定域添加到'$ input' –
@CharlotteDunois工作正常,謝謝 – Minzkraut