php去除换行(回车换行)的三种方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <?php …
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
//php 不同系统的换行
//不同系统之间换行的实现是不一样的
//linux 与unix中用 n
//MAC 用 r
//window 为了体现与linux不同 则是 rn
//所以在不同平台上 实现方法就不一样
//php 有三种方法来解决
//1、使用str_replace 来替换换行
$str = str_replace(array(“rn”, “r”, “n”), “”, $str);
//2、使用正则替换
$str = preg_replace(‘//s*/’, ”, $str);
//3、使用php定义好的变量 (建议使用)
$str = str_replace(PHP_EOL, ”, $str);
?>
|
类别:PHP 技巧、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!