Heim  >  Artikel  >  Backend-Entwicklung  >  php中使用换行及(n或rn和br)的例子

php中使用换行及(n或rn和br)的例子

WBOY
WBOYOriginal
2016-07-25 09:04:431070Durchsuche
  1. echo'hello';
  2. echo'world!';
  3. ?>
复制代码

output: helllo world!

例2:

  1. echo'hello\n';//unix系统使用\n;windows系统下\r\n
  2. echo'world!';
  3. ?>
复制代码

output: helloworld!

通过以上两个例子,相信你已经理解php中\n、\r\n及
的应用场合了吧。 您可能感兴趣的文章: php fwrite写入txt文件 \r\n不能换行的解决方法



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