1.str_replace(find,replace,string,count)
2.boolean function_exists(string function_name),本函式用來檢查指定的函式是否已經定義。
3. #計算最後一次更新和今天的間隔天數
$d1 = strtotime(date('y-m-d'));
$d2 = strtotime(substr($row->time,0,10));
$days = round(($d1-$d2)/3600/24);
strtotime()可以用英語的自然語言建立某個時刻的時間戳
函式語法:int strtotime(string $time[,int $now])
函式作用:將美國英語格式的日期時間字串轉換成unix時間戳
4. 在字串上增加反斜槓
addslashes() 函式在指定的預定義字元前新增反斜槓。
這些預定義字元是:
5.大小寫轉換
$gprotocol = strtoupper($gprotocol); //strtoupper 轉換成大寫
//strtolower 實現小寫
6.將字串連起來 jion() / implode()
join() 函式把陣列元素組合為乙個字串。
join() 函式是 implode() 函式的別名。
<?php輸出:$arr = array('hello','world!','beautiful','day!');
echo
join(" ",$arr)
;?>
hello world! beautiful day!
php 採集常用函式 PHP常用採集函式
獲取所有鏈結內容和位址function getallurl code 獲取所有的位址 function getimgsrc code else fnum if fnum fnum 0 return fnum 去除html標記 function text2html txt isu r n txt re...
常用PHP函式
這是一些使用頻率比較高的函式,有的來自別人的程式.1.產生隨機字串函式 function random length return hash 2.擷取一定長度的字串 注 該函式對gb2312使用有效 function wordscut string,length sss 0 for i 0 i le...
PHP常用函式
很有用的一些函式,你可以作為原始碼儲存,然後以後避免重複編寫。檔案讀取函式 檔案讀取函式 function php read file name fclose fd return buf 檔案寫入函式 檔案寫入函式 function php write file name,data,method w...