Heim  >  Artikel  >  Backend-Entwicklung  >  提供几个php替换换行符的方法

提供几个php替换换行符的方法

WBOY
WBOYOriginal
2016-07-25 09:05:501057Durchsuche
  1. ?$str="this is a test \n";
  2. $patten = array("\r\n", "\n", "\r");
  3. ?//先替换掉\r\n,然后是否存在\n,最后替换\r
  4. $str=str_replace($order, "", $str);
  5. ?>
复制代码
  1. //php 有三种方法来解决

  2. //1、使用str_replace 来替换换行
  3. $str = str_replace(array("\r\n", "\r", "\n"), "", $str);
  4. //2、使用正则替换

  5. $str = preg_replace('//s*/', '', $str);
  6. //3、使用php定义好的变量 (建议使用)

  7. $str = str_replace(PHP_EOL, '', $str);
复制代码
  1. /*
  2. * 获得用户操作系统的换行符,\n
  3. * @access public
  4. * @return string
  5. */
  6. function get_crlf()
  7. {
  8. if (stristr($_SERVER['HTTP_USER_AGENT'], 'Win'))
  9. {
  10. $the_crlf = '\r\n';
  11. }
  12. elseif (stristr($_SERVER['HTTP_USER_AGENT'], 'Mac'))
  13. {
  14. $the_crlf = '\r'; // for old MAC OS
  15. }
  16. else
  17. {
  18. $the_crlf = '\n';//权重大一点
  19. }
  20. return $the_crlf;
  21. }
复制代码

注意:在前台页面显示的时候,用nl2br使换行变成

第二种实例说明:

发现一个有趣的事情:

  1. $text="aaaa

  2. ccc";
  3. $text=str_replace('\n‘,"",$text);

  4. $text=str_replace('\r‘,"",$text);
  5. $text=str_replace('\r\n‘,"",$text);
复制代码

正常来说,上面的代码应该可以替换换行符了,但是事实上并非如此。 很郁闷,试了很多次,就是不起作用。 最后改成这样:

  1. $text=str_replace("\n","",$text);
  2. $text=str_replace("\r","",$text);
  3. $text=str_replace("\r\n","",$text);
复制代码

居然就可以了,原来是双引号,单引号的问题!

双引号比单引号效率差点,因为双引号在被php解析的过程中 ,还会判断里面会不会有变量,单引号就不会有这个判断,故而一般来讲,没涉及到变量的情况下,我都会用单引号,没想到这次替换换行符,用单引号居然不行·····

最后写成:

  1. $order = array("\r\n", "\n", "\r");
  2. $replace = '';
  3. $text=str_replace($order, $replace, $text);
复制代码

这样便可以替换换行符了。是不是很方便呢。

>>> 您可能感兴趣的文章: php去除字符串换行符实例解析 php压缩html(清除换行符,清除制表符,去掉注释标记) php表单中转换textarea换行符的方法 php正则过滤html标签、空格、换行符等的代码示例 php去除换行符的方法小结 php压缩html网页代码(清除空格、换行符、制表符、注释标记等)的方法 php生成excel与控制Excel单元格中的换行符



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn