我想动态打开PNG图像,但是imagecreatefrompng()
的行为很奇怪。
如果我提供一个明确的路径,例如:
$our_image = imagecreatefrompng("https://example.com/customfiles/avatars/avatar2.png");
它工作正常,但是如果我尝试提交一个字符串:
$our_image = imagecreatefrompng("https://example.com/customfiles/avatars/".$a);
它不起作用。当我输出变量$a
时,我看到它等于 avatar2.png
此外,gettype()
说$a
是一个字符串。
答案 0 :(得分:0)
文件名更改有所帮助。看来浏览器是从现金中取出旧文件的。