Answers for "What is PHP heredoc used for?"

PHP
5

php heredoc

$output = <<<HTML
	<p>Lorem ipsum dolor sit amet consectetur<p>
	<a href="{$foobar}">click here</a>
HTML;
Posted by: Guest on March-13-2020
0

heredoc php

$name = 'name';

$str =  <<<EOT
 my name is $name 
 line 2
 line 3
 
 " you can put double quote
 
 ' you can put simple quote
 
 few lines
 
EOT; // take it at the beginning of the line

echo $str;
Posted by: Guest on June-23-2020

Browse Popular Code Answers by Language