php下几个常用的去空、分组、调试数组函数
作者:bea
dump() 把数组以数组格式数组,有益于调试 function dump($vars, $label = '', $return = false){ if (ini_get('html_errors')) { $content = "<pre>"; if ($label != '') { $content .= "<strong>{$label} :</strong>"; } $content .= htmlspecialchars(pr
dump() 把数组以数组格式数组,有益于调试
function dump($vars, $label = '', $return = false){
if (ini_get('html_errors')) {
$content = "<pre>
";
if ($label != '') {
$content .= "<strong>{$label} :</strong>
";
}
$content .= htmlspecialchars(print_r($vars, true));
$content .= "
</pre>
";
} else {
$content = $label . " :
" . 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>
";
if ($label != '') {
$content .= "<strong>{$label} :</strong>
";
}
$content .= htmlspecialchars(print_r($vars, true));
$content .= "
</pre>
";
} else {
$content = $label . " :
" . 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 表单验证实现代码
- php连接mysql数据库代码
- php执行sql语句的写法
- php 结果集的分页实现代码
- php 动态添加记录
- PHP中查询SQL Server或Sybase时TEXT字段被截断的解决方法
- php mssql 日期出现中文字符的解决方法
- linux php mysql数据库备份实现代码
- php生成SessionID和图片校验码的思路和实现代码
- php 数组的创建、调用和更新实现代码
- 在JavaScript中调用php程序
- 隐性调用php程序的方法
- php动态生成JavaScript代码
- Zend 输出产生XML解析错误
- 解决了Ajax、MySQL 和 Zend Framework 的乱码问题
- php Try Catch异常测试
- php 采集书并合成txt格式的实现代码
- PHP Ajax中文乱码问题解决方法