如何用PHP检测远程图片文件是否存在
在PHP中,可以使用`file_exists()`函数来判断远程图片文件是否存在。首先需要使用`fopen()`函数打开远程文件,然后使用`fclose()`函数关闭文件。如果文件存在,`file_exists()`函数将返回`true`,否则返回`false`。 示例代码: ```php $url = "https://example.com/image.jpg"; $remote_file = fopen($url, "r"); if ($remote_file) { $file_exists = file_exists("image.jpg"); fclose($remote_file); } else { echo "无法打开远程文件"; } if ($file_exists) { echo "远程图片文件存在"; } else { echo "远程图片文件不存在"; } ```
<?php$url='http://127.0.0.1/test.jpg';if(@fopen($url,'r')){echo'FileExits';}else{echo'FileDoNotExits';}?>
具体应用大家自行修过,url为图片路径