这篇文章主要介绍了PHP判断网络文件是否存在的方法,实例分析了php读取网络文件的技巧,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了PHP判断网络文件是否存在的方法。分享给大家供大家参考。具体实现方法如下:
$file = "https://www.gaodaima.com/demo/file_ex<strong style="color:transparent">来源gaodaima#com搞(代@码网</strong>ists.zip"; $fileExists = @file_get_contents($file,null,null,-1,1) ? true : false; if($fileExists){ echo "File Exists!"; }else{ echo "Sorry, we couldn't find the file."; }
希望本文所述对大家的php程序设计有所帮助。
以上就是PHP判断网络文件是否存在的方法的详细内容,更多请关注gaodaima搞代码网其它相关文章!