在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在PHP中,有时候我们需要对字符串的换行进行过滤,比如天涯PHP博客中文章页面的description信息,我是直接截取的文章内容,并过滤掉html符号,最终还要过滤掉其中的换行。 // 第1种写法: <?php str_replace("n", '', $str); ?> // 第2种写法: <?php str_replace("rn", '', $str); ?> // 第3种写法: <?php preg_replace("/s/", '', $str); ?> 下面进行相关说明:
下面以代码说明PHP中去除字符串中换行的三种常用的方法 // 1)使用转义字符函数 <?php $str = str_replace(array("/r/n", "/r", "/n"), '', $str); ?> // 2)使用正则表达式替换 <?php $str = preg_replace('//s*/', '', $str); ?> // 3)使用PHP系统常量【推荐】 $str = str_replace(PHP_EOL, '', $str); ?>
|
2022-08-30
2022-08-17
2022-11-06
2022-08-17
2022-07-18
请发表评论