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