php下几个常用的去空、分组、调试数组函数
作者:
dump() 把数组以数组格式数组,有益于调试 array_chunk() php默认函数 作用是把函数平均分组
dump() 把数组以数组格式数组,有益于调试
function dump($vars, $label = '', $return = false){
if (ini_get('html_errors')) {
$content = "<pre>\n";
if ($label != '') {
$content .= "<strong>{$label} :</strong>\n";
}
$content .= htmlspecialchars(print_r($vars, true));
$content .= "\n</pre>\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默认函数 作用是把函数平均分组
function dump($vars, $label = '', $return = false){
if (ini_get('html_errors')) {
$content = "<pre>\n";
if ($label != '') {
$content .= "<strong>{$label} :</strong>\n";
}
$content .= htmlspecialchars(print_r($vars, true));
$content .= "\n</pre>\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数字前补0的自带函数sprintf 和number_format的用法(详解)
- PHP常用函数总结(180多个)
- PHP下使用mysqli的函数连接mysql出现warning: mysqli::real_connect(): (hy000/1040): ...
- PHP中鲜为人知的10个函数
- php用header函数实现301跳转代码实例
- PHP header()函数使用详细(301、404等错误设置)
- php set_time_limit(0) 设置程序执行时间的函数
- PHP使用trim函数去除字符串左右空格及特殊字符实例
- PHP判断是否为空的几个函数对比
- php中使用array_filter()函数过滤空数组的实现代码
- php empty函数判断mysql表单是否为空
- PHP 清除HTML代码、空格、回车换行符的函数
- php通过各种函数判断0和空