PHP清除数组中所有字符串两端空格

2019-01-30 14:30:44 总阅读量:62,本日阅读:2,本周阅读:8,本月阅读:62 0条

经常在提交表单的时候,需要清除某些字段数据的两边空格,一个个写tirm很麻烦,所有写了这个函数。

/**
 * PHP清除数组中所有字符串两端空格
 * $Input:数组
 */
function TrimArray($Input)
{
    if (!is_array($Input)) {
        return trim($Input);
    }
    return array_map('TrimArray', $Input);
}

用法

$p = TrimArray($_POST);
标签 函数 PHP 数组

非特殊说明,本博所有文章均为博主原创。

-----