dump() 把數組以數組格式數組,有益於調試
function dump($vars, $label = '', $return = false){
if (ini_get('html_errors')) {
$content = "
n"; <br>if ($label != '') { <br>$content .= "<strong>{$label} :</strong>n"; <br>} <br>$content .= htmlspecialchars(print_r($vars, true)); <br>$content .= "n
登入後複製
n";
} else {
$content = $label . " :n" . print_r($vars, true);
}
if ($return) { return $content; }
echo $content;
return null;
}
array_remove_empty()去除數組中為空的元素
function array_remove_empty(& $arr, $trim = true){
foreach ($arr as $key => $value) {
if (is_array($ value)) {
array_remove_empty($arr[$key]);
} else {
$value = trim($value);
if ($value == '') {
unset($arr[$key]);
} elseif ($trim) {
$arr[$key] = $value;
}
}
}
}
array_chunk() php預設函數作用是把函數平均分組
以上就介紹了數組函數 php下幾個常用的去空、分組、調試數組函數,包括了數組函數方面的內容,希望對PHP教程有興趣的朋友有所幫助。