这篇文章主要介绍了php去除字符串中空字符的常用方法,实例分析了php中的trim()、ltrim()、rtrim()及chop()等函数的使用技巧,非常具有实用价值,需要的朋友可以参考下
本文实例总结了php去除字符串中空字符的常用方法。分享给大家供大家参考。具体分析如下:
php中包含四个可以去除字符串空格的函数:
trim() – 去除字符串两端的空字符
ltrim() – 去除字符串前端的空字符
rtrim() – 去除字符串末尾的空字符
chop() –同rtrim().
代码如下:
- <?php
- $text = "/t /t www.vevb.com!/t /t ";
- $leftTrimmed = ltrim($text);
- $rightTrimmed = rtrim($text);
- $bothTrimmed = trim($text);
- print("leftTrimmed = ($leftTrimmed)/n");
- print("rightTrimmed = ($rightTrimmed)/n");
- print("bothTrimmed = ($bothTrimmed)/n");
- ?>
输出结果:
- leftTrimmed = (jwww.vevb.com! )
- rightTrimmed = (www.vevb.com!)
- bothTrimmed = (www.vevb.com)
希望本文所述对大家的php程序设计有所帮助。
新闻热点
疑难解答