当前位置:Gxlcms > PHP教程 > php除了字符串首尾中英文空格

php除了字符串首尾中英文空格

时间:2021-07-01 10:21:17 帮助过:18人阅读

php去除字符串首尾中英文空格


/**
 * 去除空格(包括中英文空格)
 * User: yangyingjie
 * qq: 471156231 
 */
function  mbTrim($str)
{
    return mb_ereg_replace('(^( | )+|( | )+$)', '', $str);
}



人气教程排行