multiline string in php with inner strings code example
Example 1: php multiple line string
//use EOD function for multiple line variable
$variable=<<<EOD
this is line1
this is line2
EOD;
Example 2: Write Multi-Line Strings in PHP
phpCopy<?php
echo("This is the first line \r\nThis is the third line");
?>