Interview Questions

What is meant by nl2br()?

PHP Interview Questions and Answers


(Continued from previous question...)

What is meant by nl2br()?

Anwser1:
nl2br() inserts a HTML tag <br> before all new line characters \n in a string.

echo nl2br("god bless \n you");

output:
god bless<br>
you

(Continued on next question...)

Other Interview Questions