Write Multi Line Strings In Php

[Solved] Write Multi Line Strings In Php | Php Frameworks Codeigniter - Code Explorer | yomemimo.com
Question : php multiple line string

Answered by : ketan-baitule

//use EOD function for multiple line variable
$variable=<<<EOD this is line1 this is line2 EOD;

Source : | Last Update : Tue, 16 Jun 20

Question : multiline echo in php

Answered by : sahil-bhatt

<?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;

Source : https://stackoverflow.com/questions/12534836/php-multiline-string-with-php | Last Update : Mon, 12 Sep 22

Question : Write Multi-Line Strings in PHP

Answered by : pawan-mall

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);
?>

Source : https://www.delftstack.com/howto/php/php-multiline-string/ | Last Update : Fri, 30 Apr 21

Question : multiline string php

Answered by : mais-inc

<?php $var_name=<<<MULTILINENAME
text
MULTILINENAME;
?>

Source : | Last Update : Thu, 07 Jul 22

Question : Write Multi-Line Strings in PHP

Answered by : pawan-mall

phpCopy<?php
$mystring1 = "This is the first line." . PHP_EOL;
$mystring2 = "This is the second line";
$mystring1 .= $mystring2;
echo($mystring1);
?>

Source : https://www.delftstack.com/howto/php/php-multiline-string/ | Last Update : Fri, 30 Apr 21

Question : Write Multi-Line Strings in PHP

Answered by : pawan-mall

phpCopy<?php
echo("This is the first line \r\nThis is the third line");
?>

Source : https://www.delftstack.com/howto/php/php-multiline-string/ | Last Update : Fri, 30 Apr 21

Question : Write Multi-Line Strings in PHP

Answered by : pawan-mall

phpCopy<?php
echo("This is the first line \nThis is the second line");
?>

Source : https://www.delftstack.com/howto/php/php-multiline-string/ | Last Update : Fri, 30 Apr 21

Question : Write Multi-Line Strings in PHP

Answered by : pawan-mall

phpCopy<?php
echo("This is the first line \n\nThis is the third line");
?>

Source : https://www.delftstack.com/howto/php/php-multiline-string/ | Last Update : Fri, 30 Apr 21

Answers related to write multi line strings in php

Code Explorer Popular Question For Php Frameworks Codeigniter