当前位置:Gxlcms > PHP教程 > php去掉字符串首尾空格的方法

php去掉字符串首尾空格的方法

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

  1. /*
  2. trim 去除一个字符串两端空格,
  3. rtrim 是去除一个字符串右部空格,
  4. ltrim 是去除一个字符串左部空格。
  5. */
  6. echo trim(" 空格 ")."
    ";
  7. echo rtrim(" 空格 ")."
    ";
  8. echo ltrim(" 空格 ")."
    ";
  9. ?>

方法2:通过正则表达式替换,功能更强。php去除字符串首尾空格(包括全角)

  1. $str="     脚本学堂 bbs.it-home.org     ";
  2. $str = mb_ereg_replace('^( | )+', '', $str);
  3. $str = mb_ereg_replace('( | )+$', '', $str);
  4. echo mb_ereg_replace('  ', "\n  ", $str);
  5. ?>

人气教程排行