Concatenation with a here document : here document « String « PHP
- PHP
- String
- here document
Concatenation with a here document
<?
$html = <<< END
<div class="$divClass">
<ul class="$ulClass">
<li>
END
. $listItem . '</li></div>';
print $html;
?>
Related examples in the same category