这是我的代码。
$filename = "$myMedia catalog/category/ $myImage.png";
$filename = str_replace(" ", "", $filename);
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
上述variable
输出http://50.87.6.244/~storeupp/media/catalog/category/Game_Used.png
确实存在。但是,它说它不存在。
知道为什么吗?