我正在使用以下代码,但它对我不起作用。
$img1=$info['available_now']; //http://www.jjbsports.com/pws/client/images/catalogue/products/65014201/zoom/65014201_white.jpg
$filename = $img1;
if (file_exists($filename)) {
echo "The file $filename exists";
echo '<img src="'; echo $id1; echo '"width="50" height="50"/>'."<br>";
} else {
echo "The file $filename does not exist";
echo '<img src="'; echo $id1; echo '"width="50" height="50"/>'."<br>";
}
请帮助我问候,
找到代码
$headers = get_headers($filename, 1);
echo $filename."=".$headers['Content-Length']."<br>"; // size in bytes
答案 0 :(得分:4)
PHP HTTP wrapper不支持stat()
,因此在提供HTTP网址时,file_exists()
等函数将无法正常工作。
如果文件位于本地服务器上,请使用与文件系统相关的文件路径。否则,您无法使用file_exists()
。