PHP裡面有非常豐富的內建函數,很多我們都用過,但仍有許多的函數我們大部分人都不熟悉,可它們卻十分的有用。在這篇文章裡,我列舉了一些鮮為人知但會讓你眼睛一亮的PHP函數。
levenshtein()
你有沒有經歷過需要知道兩個單字有多大的不同的時候,這個函數就是來幫你解決這個問題的。它能比較出兩個字串的不同程度。
用法:
<?php $str1 = "carrot"; $str2 = "carrrott"; echo levenshtein($str1, $str2); //Outputs 2 ?>
Source: http://php.net/manual/en/function.levenshtein.php
get_defined_vars()
這是一個在debug時非常有用的調試函數。這個函數傳回一個多維數組,裡麵包含了所有定義過的變數。
用法:
<?php print_r(get_defined_vars()); ?>
Source: http://php.net/manual/en/function.get-defined-vars.php
php_check_syntax()
這個函數非常有用的語法是否正確。出於技術上的原因,從PHP 5.05開始,這個函數被刪除了。
用法:
<?php $error_message = ""; $filename = "./php_script.php"; if(!php_check_syntax($filename, &$error_message)) { echo "Errors were found in the file $filename: $error_message"; } else { echo "The file $filename contained no syntax errors"; } ?>
Source: http://www.php.net/manual/en/function.php-check-syntax.php
ignore_user_abort()
這個函數用來拒絕瀏覽器端使用者終止執行腳本的請求。正常情況下客戶端的退出會導致伺服器端腳本停止運作。
用法:
<?php ignore_user_abort(); ?>
Source: http://www.php.net/manual/en/function.ignore-user-abort.php
highlight_string()
當你想把頁面上顯示到頁面上時,highlight_string()函數就會顯得非常有用。這個函數會把你提供的PHP程式碼用內建的PHP語法來突顯定義的顏色高亮顯示。這個函數有兩個參數,第一個參數是一個字串,表示這個字串需要被反白。第二個參數如果設定成TRUE,這個函數就會把高亮後的程式碼當成回傳值回傳。
用法
<?php highlight_string(' <?php phpinfo(); ?>'); ?>
Source: http://php.net/manual/en/function.highlight-string.php
highlight_file
這是一個非常有用的PHP函數,它能傳回指定的PHP檔案,並依照語法語意以高亮顏色突顯文件內容。其中的突出顯示的程式碼都是用HTML標記處理過的。
用法:
<?php highlight_file("php_script.php"); ?>
Source: http://www.php.net/manual/en/function.highlight-file.php
php_strip_whitespace
會刪除文件裡的註解和空格符。
用法:
<?php echo php_strip_whitespace("php_script.php"); ?>Source: http://www.php.net/manual/en/function.php-strip-whitespace.php
get_browser
這個函數會讀取wsbrocap.器相容資訊。
用法:
<?php echo $_SERVER['HTTP_USER_AGENT']; $browser = get_browser(); print_r($browser); ?>Source: http://www.php.net/manual/en/function.get-browser.php
memory_get_usage(),memory_get_peak_usage(memory_get_usage(),memory_get_peak_usage(rus]取得記憶體和CPU使用情況,memory_get_usage()函數傳回記憶體使用量,memory_get_peak_usage()函數傳回記憶體使用峰值,getrusage()傳回CUP使用情況,在偵錯PHP程式碼效能時,這些函式會為你提供一些有用資訊。但有一點請注意,在這些函數中Window上無效。
用法:
<?php echo "Initial: ".memory_get_usage()." bytes \n"; echo "Peak: ".memory_get_peak_usage()." bytes \n"; $data = getrusage(); echo "User time: ". ($data['ru_utime.tv_sec'] + $data['ru_utime.tv_usec'] / 1000000); echo "System time: ". ($data['ru_stime.tv_sec'] + $data['ru_stime.tv_usec'] / 1000000); ?>
用法:
<?php $string = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ut elit id mi ultricies adipiscing. Nulla facilisi. Praesent pulvinar, sapien vel feugiat vestibulum, nulla dui pretium orci, non ultricies elit lacus quis ante. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam pretium ullamcorper urna quis iaculis. Etiam ac massa sed turpis tempor luctus. Curabitur sed nibh eu elit mollis congue. Praesent ipsum diam, consectetur vitae ornare a, aliquam a nunc. In id magna pellentesque tellus posuere adipiscing. Sed non mi metus, at lacinia augue. Sed magna nisi, ornare in mollis in, mollis sed nunc. Etiam at justo in leo congue mollis. Nullam in neque eget metus hendrerit scelerisque eu non enim. Ut malesuada lacus eu nulla bibendum id euismod urna sodales. "; $compressed = gzcompress($string); $original = gzuncompress($compressed); ?>