/원격 파일 존재 여부 확인
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 = 폭발('
', $headers[0]); >
위 내용은 관련 측면을 포함하여 원격 파일이 존재하는지 확인하는 get_headers 함수를 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.