当前位置:首页 > PHP教程 > php文件操作 > 列表

PHP判断网络文件是否存在的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-16 11:51:10 浏览: 评论:0 

这篇文章主要介绍了PHP判断网络文件是否存在的方法,实例分析了php读取网络文件的技巧,具有一定参考借鉴价值,需要的朋友可以参考下。

本文实例讲述了PHP判断网络文件是否存在的方法,分享给大家供大家参考,具体实现方法如下:

  1. $file = "https://www.phpfensi.com/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."

希望本文所述对大家的php程序设计有所帮助。

Tags: PHP判断文件是否存在

分享到: