当前位置:Gxlcms > PHP教程 > PHP判断网络文件是否存在

PHP判断网络文件是否存在

时间:2021-07-01 10:21:17 帮助过:23人阅读

[PHP]代码

  1. $file = "http://www.xxx.nxxxet/demo/file_exists.zip";
  2. $fileExists = @file_get_contents($file,null,null,-1,1) ? true : false ;
  3. if($fileExists){
  4. echo "File Exists!";
  5. }else{
  6. echo "Sorry, we couldn't find the file.";
  7. }
是否存在, PHP

人气教程排行