Home > Backend Development > PHP Tutorial > php代码中使用换行及(n或rn跟br)的应用

php代码中使用换行及(n或rn跟br)的应用

WBOY
Release: 2016-06-13 12:03:31
Original
895 people have browsed it

php代码中使用换行及(\n或\r\n和br)的应用

浏览器识别不了\n或\r\n,这两个换行符是文本换行符,文本文件有效;如果需要将结果输出到浏览器或打印到显示器,代码中使用br;如果只是在源代码中换行,则使用\n或\r\n,感兴趣的朋友可以了解下,或许对你学习php有所帮助

<?php echo&#39;hello</br>'; echo'world!'; ?> //output: helllo world! 
Copy after login
代码b: <?php echo&#39;hello\n&#39;;//unix系统使用\n;windows系统下\r\n echo&#39;world!&#39;; ?> output: helloworld! 
Copy after login

分析:浏览器识别不了\n或\r\n,这两个换行符是文本换行符,文本文件有效;在网页中查看HTML源代码可以发现代码b成功实现了换行 
总结:如果需要将结果输出到浏览器或打印到显示器,代码中使用;如果只是在源代码中换行,则使用\n或\r\n
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template