去除数组空格 php

public function trimArray($params)
{
if (!is_array($params))
return trim($params);
return array_map([__CLASS__, 'trimArray'], $params);
}


function TrimArray($Input){
if (!is_array($Input))
return trim($Input);
return array_map('TrimArray', $Input);
}
原文地址:https://www.cnblogs.com/brady-wang/p/12058226.html