欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP判断文件是否存在

程序员文章站 2022-06-15 16:20:17
...
PHP判断文件是否存在,可使用如下代码:
  1. //判断远程文件是否存在
  2. function remote_file_exists($url) {
  3. $executeTime = ini_get('max_execution_time');
  4. ini_set('max_execution_time', 0);
  5. $headers = @get_headers($url);
  6. ini_set('max_execution_time', $executeTime);
  7. if ($headers) {
  8. $head = explode(' ', $headers[0]);
  9. if (!emptyempty($head[1]) && intval($head[1]) return true;
  10. }
  11. return false;
  12. }