php heredoc code example
Example 1: php heredoc
$output = <<<HTML
<p>Lorem ipsum dolor sit amet consectetur<p>
<a href="{$foobar}">click here</a>
HTML;
Example 2: heredoc php
$str = <<<MYTEXT
This is a
demo message
with heredoc.
MYTEXT;
echo $str;
Example 3: heredoc php
<?php
$str = <<<EOD
Exemple de chaîne
sur plusieurs lignes
en utilisant la syntaxe Heredoc.
EOD;
class foo
{
var $foo;
var $bar;
function __construct()
{
$this->foo = 'Foo';
$this->bar = array('Bar1', 'Bar2', 'Bar3');
}
}
$foo = new foo();
$name = 'MyName';
echo <<<EOT
Mon nom est "$name". J'affiche quelques $foo->foo.
Maintenant, j'affiche quelques {$foo->bar[1]}.
Et ceci devrait afficher un 'A' majuscule : \x41
EOT;
?>
Example 4: 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;
echo $str;