xxxxxxxxxx
<?php
$var = 'Howdy';
echo <<<EOL
This is output
And this is a new line
blah blah blah and this following $var will actually say Howdy as well
and now the output ends
EOL;
xxxxxxxxxx
phpCopy<?php
$mystring1 = "This is the first line." . PHP_EOL;
$mystring2 = "This is the second line" . PHP_EOL;
$mystring3 = "This is the third line" . PHP_EOL;
$mystring4 = "This is the fourth line" . PHP_EOL;
$mystring5 = "This is the fifth line";
$mystring1 .= $mystring2 .= $mystring3 .= $mystring4 .= $mystring5;
echo($mystring1);
?>
xxxxxxxxxx
phpCopy<?php
$mystring1 = "This is the first line." . PHP_EOL;
$mystring2 = "This is the second line";
$mystring1 .= $mystring2;
echo($mystring1);
?>
xxxxxxxxxx
phpCopy<?php
echo("This is the first line \r\nThis is the third line");
?>
xxxxxxxxxx
<?php
$var1="We". PHP_EOL;
$var2="Welcome". PHP_EOL;
$var3="You". PHP_EOL;
$var4="On". PHP_EOL;
$var5="Our". PHP_EOL;
$var6="Softhunt". PHP_EOL;
$var7="Website";
$var1.=$var2.=$var3.=$var4.=$var5.=$var6.=$var7;//concatenating the string into $var1
echo $var1 //printing concatenated string
?>
xxxxxxxxxx
phpCopy<?php
echo("This is the first line \nThis is the second line");
?>
xxxxxxxxxx
<?php
//declaring multiple lines using the new line escape sequence
$var="We\nWelcome\nYou\nOn\nOur\nSofthunt\nWebsite";
echo $var;
?>
xxxxxxxxxx
phpCopy<?php
echo("This is the first line \n\nThis is the third line");
?>