php trim UTF8去空格

function mb_trim($string){
    // u模式符表示 字符串被当成 UTF-8处理
    return preg_replace('/(^\s+)|(\s+$)/u', '', $string);
}

你可能感兴趣的:(php)