程式碼如下:
//判斷遠端檔案
function check_remote_file_exists($url)
{
$curl = curl_init($url);
///不取回資料寄送請求
$result = curl_exec($curl);
$found = false;
// 若要求沒有傳送失敗($curl);
$found = false;
// 若要求沒有傳送失敗/
if ($result !== false) {
//
if ($result !== false) {
//
if ($result !== false) {
//
if ($result !== false) {
//
if ($result !== false) {
// 請檢查http 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( 。 02 Jun 2011 02:47:27 GMT
[2] => Server: Apache
[3] => P3P: CP=" OTI DSP COR IVA OUR IND COM "
[4] => Set-Cookie COR IVA OUR IND COM "
[4] => Set-CookieCOR IVA OUR IND COM "
[4] => Set-CookieC: BAI9ID=7F6A5796F :FG=1; expires=Fri, 01-Jun-12 02:47:27 GMT; max-age=31536000; path=/; domain=.baidu.com; version=1
[5]ified => Last-Mod : Thu, 20 Jan 2011 07:15:35 GMT
[6] => ETag: "65e-49a41e65933c0"
[7] => Accept-Ranges: bytes 🟎 ] => Cache-Control: max-age=315360000
[10] => Expires: Sun, 30 May 2021 02:47:27 GMT
[11] => Connection: Close
[12] => Cont] image/gif
)
//加參數1的效果
print_r(get_headers("http://www.baidu.com/img/baidu_sylogo1.gif", 1));
結果:
Array( ] => HTTP/1.1 200 OK
[Date] => Thu, 02 Jun 2011 02:49:28 GMT
[Server] => Apache
[P3P] => CP=" OTI DSP COR [Set-Cookie] => BAIDUID=4D875812FC482C0ADE4F5C17068849EE:FG=1; expires=Fri, 01-Jun-12 02:49:28 GMT; max-age=31536000; path 1
[Last-Modified] => Thu, 20 Jan 2011 07:15:35 GMT
[ETag] => "65e-49a41e65933c0"
[Accept-Ranges] = 1965933c0" 🜠 [Cache-Control] => max-age=315360000
[Expires] => Sun, 30 May 2021 02:49:28 GMT
[Connection] => Close
[Content-Type] => image/gif
怎麼樣,get_headers函數還是不錯的吧,不過既然效率有問題,那隻好不優先考慮了,curl就不錯,下面看看curl的做法
複製程式碼 程式碼如下:
function check_remote_file_exists($url)
function check_remote_file_exists($url)
function check_remote_file_exists($url)
function check_remote_file_exists($url)
function check_remote_file_exists($url)
function check_remote_file_exists($url)
function check_remote_file_exists($url)
function check_remote_file_exists($url)
{
$curl = curl_init($url);
// 不取回資料
curl_setopt($curl, CURLOPT_NOBODY, true);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST
curl_setopt($curl, CURLOPT_CUSTOMREQUEST
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'GET');了才回傳正確的200,原因不明
// 寄送請求
$result = curl_exec($curl);
$found = false;
// 若要求沒有寄送失敗
if ($result !
// 再檢查http回應碼是否為200
$statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
if ($statusCode == 200) ;
return $found;
}
$exists = check_remote_file_exists('http://www.baidu.com/img/baidu_sylogo1.gif');
echo $exists ?存在' : '不存在$4); = check_remote_file_exists('http://www.baidu.com/test.jpg');
echo $exists ? '存在' : '不存在';

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

Dreamweaver Mac版
視覺化網頁開發工具

SublimeText3 Linux新版
SublimeText3 Linux最新版

SublimeText3漢化版
中文版,非常好用

SublimeText3 英文版
推薦:為Win版本,支援程式碼提示!

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境