Answers for "how to change a line of text in php"

PHP
1

php fwrite new line

$data = 'my data' . PHP_EOL . 'my data';
$fp = fopen('my_file', 'a');
fwrite($fp, $data);
fclose($fp);
Posted by: Guest on December-13-2020
2

newline in php

<?php
 echo nl2br("If you want that '\n' works. \n Then use nl2br() function!");
 echo "<br> can also be used.";
 echo "nl2br() is in-built function whereas <br> is html tag";
?>
Posted by: Guest on March-12-2021

Code answers related to "how to change a line of text in php"

Browse Popular Code Answers by Language