(PHP 4, PHP 5, PHP 7)
nl2br — ���ַ�����������֮ǰ���� HTML ���б��
$string
[, bool $is_xhtml
= TRUE
] ) : string
���ַ��� string
��������֮ǰ���� '<br />'
�� '<br>'
�������ء�
string
�����ַ�����
is_xhtml
�Ƿ�ʹ�� XHTML ���ݻ��з���
���ص�������ַ�����
Example #1 nl2br() ʹ�÷���
<?php
echo nl2br("foo isn't\n bar");
?>
�������̻������
foo isn't<br /> bar
Example #2 ʹ�� is_xhtml
���ɺϷ��� HTML ���
<?php
echo nl2br("Welcome\r\nThis is my HTML document", false);
?>
�������̻������
Welcome<br> This is my HTML document
Example #3 ���ֻ��зָ���
<?php
$string = "This\r\nis\n\ra\nstring\r";
echo nl2br($string);
?>
�������̻������
This<br /> is<br /> a<br /> string<br />
�汾 | ˵�� |
---|---|
5.3.0 |
������ѡ�� is_xhtml �������ڴ�֮ǰ�����Dz��� '<br />'��
|