首頁 >後端開發 >php教程 >不常見卻非常有用的PHP函數

不常見卻非常有用的PHP函數

巴扎黑
巴扎黑原創
2016-11-22 16:47:011067瀏覽

函數是PHP如此強大的源泉,但是許多PHP函數並沒有充分的利用。這裡,我們給大家簡單介紹10個不常見,但非常有用的函數。 

1. sys_getloadavg() 

sys_getloadavt()可取得係 統負載狀況。此函數傳回一個包含三個元素的數組,每個元素分別代表系統再過去的1、5和15分鐘內的平均負載。與其讓伺服器因負 載過高而宕掉,不如在系統負載很高時主動die掉一個腳本,sys_getloadavg()就是用來幫你實現這個功能的。 不過很遺憾,函數在windows下無效。 

2. pack() 

Pack() 可將md5()傳回的32位元16進位字串轉換為16位元的二進位字串,可節省儲存空間。 

3. cal_days_in_month() 

cal_days_in_month()能夠回傳指定月份共有多少天。 

4. _() 

WordPress開發者常常可以看到這個函數,還有 _e()。這兩個函數功能相同,與gettext()函數結合使用,能實現網站的多語言化。具體可參考PHP手冊的相關部分介紹。 

5. get_browser() 

在發送頁面前先看看用戶的瀏覽器都能做些什麼是 不是挺好? get_browser()能取得使用者的瀏覽器類型,以及瀏覽器支援的功能,不過首先你需要一個php_browscap.ini文件,用來給 函數做參考文件。 

要注意,此函數對瀏覽器功能的判斷是基於該類瀏覽器的一般特性的。例如,如果使用者關閉了瀏覽器對 JavaScript的支持,函數無法得知這一點。但是在判斷瀏覽器類型和OS平台方面,函數還是很準確的。 

6. debug_print_backtrace() 

這是一個除錯用的函數,可以幫助你發現程式碼中的邏輯錯誤。想理解這個函數,還是直接看個例子: 

Php代碼  

$a = 0;     

  

if( $a recur ();      

echo $a . 「, 「;      

}            

$a++;      

// how did I get here?     ;      

debug_print_backtrace();      

if( $a iterate();   

   

  

# OUTPUT:    

#0 recur() called at [C: htdocsphp_stuffindex.php:8]    

#1 iterate() called at [C:htdocsphp_stuffindex.php:25]    

#0 recur() called at [C:htdocssphp_stuff :htdocsphp_stuffindex.php:21]    

#2 recur() called at [C:htdocsphp_stuffindex.php:8]    

#3 ite C:htdocsphp_stuffindex.php:8]    

#1 iterate() called at [C:htdocsphp_stuffindex.php:21]    

#2 recur() called at [C:htdocsphp_stuff. [C:htdocsphp_stuffindex.php:21]    

#4 recur() called at [C:htdocsphp_stuffindex.php:8]    

#5 iterate() called at [C:htdocsphp_liuffindex.

這個函數回傳單字的metaphone值,相同讀音的單字有相同的metaphone值,也就是說這個函數可以幫你判斷兩個字的讀音是否相同。


8. natsort() 

natsort()能將一個陣列以自然排序法進行排列,直接看個例子吧: 



Php代碼  




Php代碼  
🠎「$items」 」, 「110 apples」, 55 apples」      

);      

// normal 
print_r($items);  

   
# Outputs:    
# Array    
# (    
# [0] => 100 apples        
# [3] => 55 apples    
# )


Php代碼  

natsort($items);      

print_r($items);  (    

# [2] => 5 apples    

# [3] => 55 apples    

# [0] => 100 apples    

# [1] => 110 apples    
# )   
even
9. levenshin(in) c它告訴你如果想把一個單字變成另一個單詞,需要插入、替換和刪除多少字母。

看個例子: 



Php代碼  

$dictionary = array(   「php」, 
$word = 「japhp」;      

$best_match = $ dictionary[0];      

$match_value = levenshtein($dictionary[0], $word);      = levenshtein($word, $w);      

if ( $value 

$best_match = $w;        

}  

    

echo 「Did you mean the '$best_match' category?」; 

  

10 . glob() 

glob()會讓你覺得用opendir(), readdir()和closedir()來尋找文件非常蠢。 

Php代碼  

foreach (glob(“*.php”) as $file)   echo 「$filen」;  
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn