时间:2021-07-01 10:21:17 帮助过:28人阅读
function array_format($data){
foreach($data as $k => &$v){
if(is_array($v)) {
array_format(&$v); //这个是关键。在5.3版本可以使用.在5.4版本不能用。这个是什么问题?
}else{
if(is_null($v)) $v = "";
$v = htmlspecialchars_decode($v);
}
}
return $data;
}
function array_format(&$data){
foreach($data as $k => &$v){
if(is_array($v)) {
array_format($v);
}else{
if(is_null($v)) $v = "";
$v = htmlspecialchars_decode($v);
}
}
return $data;
}