多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
``` /* * 判断远程文件是否存在 */ 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 ( !empty($head[1]) && intval($head[1]) < 400) return true; } return false; } ```