sys_getloadavt()可以獲得系 統負載情況
與其讓服務器因負 載過高而宕掉
Pack() 能將md
cal_days_in_month()能夠返回指定月份共有多少天
WordPress開發者經常能見到這個函數
在發送頁面前先看看用戶的浏覽器都能做些什麼是 不是挺好?get_browser()能獲得用戶的浏覽器類型
要注意
這是一個調試用的函數
$a =
function iterate() {
global $a;
if( $a <
recur();
echo $a
}
function recur() {
global $a;
$a++;
// how did I get here?
echo “nnn”;
debug_print_backtrace();
if( $a <
iterate();
}
iterate();
# OUTPUT:
#
#
#
#
#
#
#
#
#
#
#
#
這個函數返回單詞的metaphone值
natsort()能將一個數組以自然排序法 進行排列
$items = array(
“
);
// normal sorting:
sort($items);
print_r($items);
# Outputs:
# Array
# (
# [
# [
# [
# [
# )
natsort($items);
print_r($items);
# Outputs:
# Array
# (
# [
# [
# [
# [
# )
Levenshtein() 告訴你兩個單詞之間的“距離”
看個例子吧
$dictionary = array(
“php”
);
$word = “japhp”;
$best_match = $dictionary[
$match_value = levenshtein($dictionary[
foreach($dictionary as $w) {
$value = levenshtein($word
if( $value < $match_value ) {
$best_match = $w;
$match_value = $value;
}
}
echo “Did you mean the ‘$best_match’ category?”;
glob()會讓你覺得用 opendir()
foreach (glob(“*
echo “$filen”;
From:http://tw.wingwit.com/Article/program/PHP/201311/20861.html