php中如何实现换行
短信预约 -IT技能 免费直播动态提醒
php实现换行的方法有5种:换行符、html换行标签、css换行样式、php_eol常量、nl2br()函数。
如何使用PHP实现换行
在PHP中实现换行有以下方法:
1. 换行符
使用换行符直接插入换行:
echo "This is the first line \nThis is the second line";
2. HTML换行标签
使用
标签实现换行:
echo "This is the first line<br>This is the second line";
3. CSS换行样式
使用CSS样式"white-space: pre"实现换行,使文本保持原始格式:
echo "<p style="white-space: pre;">This is the first line\nThis is the second line</p>";
4. PHP_EOL常量
使用PHP_EOL常量表示不同的平台下的换行符:
echo "This is the first line" . PHP_EOL . "This is the second line";
5. nl2br()函数
nl2br()函数将换行符转换为
标签:
echo nl2br("This is the first line\nThis is the second line");
以上就是php中如何实现换行的详细内容,更多请关注编程网其它相关文章!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341