我使用 php 脚本生成Identicons 。使用 a 显示结果<img>
很好
$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