国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

PHP幾個常用的去空、分組、調試數組函數

瀏覽:103日期:2024-01-14 18:41:51

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默認函數 作用是把函數平均分組

標簽: PHP
主站蜘蛛池模板: 游戏| 贵定县| 揭西县| 邢台县| 达尔| 侯马市| 大荔县| 富蕴县| 双流县| 诏安县| 乌拉特后旗| 建水县| 邢台市| 慈利县| 南乐县| 得荣县| 建阳市| 井冈山市| 永登县| 古田县| 佛山市| 德保县| 张家界市| 邵阳县| 酒泉市| 教育| 哈巴河县| 嘉黎县| 陆丰市| 元氏县| 邛崃市| 博野县| 阳东县| 疏勒县| 登封市| 毕节市| 屏边| 吉安县| 怀远县| 华容县| 兰溪市|