php multiple line string
//use EOD function for multiple line variable
$variable=<<<EOD
this is line1
this is line2
EOD;
php multiple line string
//use EOD function for multiple line variable
$variable=<<<EOD
this is line1
this is line2
EOD;
Write Multi-Line Strings in PHP
phpCopy<?php
$mystring1 = "This is the first line." . PHP_EOL;
$mystring2 = "This is the second line";
$mystring1 .= $mystring2;
echo($mystring1);
?>
Write Multi-Line Strings in PHP
phpCopy<?php
echo("This is the first line \r\nThis is the third line");
?>
Write Multi-Line Strings in PHP
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);
?>
Write Multi-Line Strings in PHP
phpCopy<?php
echo("This is the first line \nThis is the second line");
?>
Write Multi-Line Strings in PHP
phpCopy<?php
echo("This is the first line \n\nThis is the third line");
?>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us