複製程式碼 程式碼如下:
//判斷遠端檔案
function check_remote_file_exists($url)
{
$curl = curl,curl =curl,curl: 取回資料CURLOPT_NOBODY, true);
// 發送請求
$result = curl_exec($curl);
$found = false;
// 如果請求沒有發送失敗
if ($result !== false) {
// 再檢查http回應碼是否為200
$statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
if ($statusCode == 200) {
$found = true;
}
}
最近在弄一個html5音樂播放的網站,想讓我的iphone和ipad爽一爽,前端採用jquery的一個插件jplayer,經過改造之後效果還不錯。
後台採用PHP,定時採集百度的MP3。 考慮到本人伺服器空間菊緊,當然只能採集MP3位址,檔案並沒有下載到本地。考慮到百度MP3路徑經常變,實在是蛋疼,於是必須定時判斷MP3路徑還對不對,於是就有了PHP判斷遠端檔案是否存在這篇軟文。開始用get_headers() 方法,後來聽說有效率問題,於是不使用此解決方案,但是也順帶一提吧,下面看看get_headers函數的效果:
程式碼如下: //預設效果print_r(get_headers("http://www.baidu.com/img/baidu_sylogo1.gif")); 結果: Array (
[0] => HTTP/1.1 200Array(
[0] => HTTP/1.1 200 OK
[11 ] => Date: Thu, 02 Jun 2011 02:47:27 GMT
[2] => Server: Apache
[3] => P3P: CP=" OTI DSP COR IVA OUR IND COM "
[4] => Set-Cookie: BAIDUID=7F6A5A2ED03878A7791C89C526966F3A:FG=1; expires=Fri, 01-Jun-12 02:47:27 GMT; max-age=31536000 path 5] => Last-Modified: Thu, 20 Jan 2011 07:15:35 GMT
[6] => ETag: "65e-49a41e65933c0"
[7] => Accept-Ranges: bytes> Cont] -Length: 1630
[9] => Cache-Control: max-age=315360000
[10] => Expires: Sun, 30 May 2021 02:47:27 GMT
[11] => 1: Close
[11] => 1: Close
[11] => 1: Close ] => Content-Type: image/gif
)
//加參數1的效果
print_r(get_headers("http://www.baidu.com/img/baidu_sylogo1.gif", 1));
結果:
Array
(
[0] => HTTP/1.1 200 OK
[Date] => Thu, 02 Jun 2011 02:49:28 GMT
[Server] => Apache
[P3]SP =dSP> COR IVA OUR IND COM "
[Set-Cookie] => BAIDUID=4D875812FC482C0ADE4F5C17068849EE:FG=1; expires=Fri, 01-Jun-12 02:49:28 GMT. .baidu.com; version=1
[Last-Modified] => Thu, 20 Jan 2011 07:15:35 GMT
[ETag] => "65e-49a41e65933c0"
-Length] => 1630
[Cache-Control] => max-age=315360000
[Expires] => Sun, 30 May 2021 02:49:28 GMT
[Connection] => Closel
> image/gif
)
怎麼樣,get_headers函數還是不錯的吧,不過既然效率有問題,那隻好不優先考慮了,curl就不錯,下面看看curl的做法
複製程式碼
程式碼如下:
{ $curl = curl_init($url); // 不取回資料curl_setopt($curl, CURS,$curl. QUEST, 'GET'); //不加這個會回傳403,加了才回傳正確的200,原因不明// 發送請求
$result = curl_exec($curl);$found = false;
// 如果請求沒有傳送失敗
if ($result !== false)
{
// 再檢查http回應碼是否為200
$statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
if ($statusCode == == 20% == $2005 ($stat203) $found = true;
}
}
curl_close($curl);
return $found;
}
$exists = check_remote_file_exists('http://www.baidu.com/imloge/bists; $exists ? '存在' : '不存在';
$exists = check_remote_file_exists('http://www.baidu.com/test.jpg');
echo $exists ? '存在' : '不存在';
以上就介紹了microsoft office professional php下利用curl判斷遠端檔案是否存在的實作程式碼,包括了microsoft office professional 方面的內容,希望對PHP教學有興趣的朋友有所幫助。