PHP头条
热点:

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


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


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



www.phpzy.comtrue/phprm/22017.htmlTechArticlephp除了字符串首尾中英文空格 php去除字符串首尾中英文空格 /** * 去除空格(包括中英文空格) * User: yangyingjie * qq: 471156231 */function mbTrim($str){ return mb_ereg_replace('(^( | )+|( | )+$)', '', $str);}...

相关文章

PHP之友评论

今天推荐