Sign in
apache
/
netbeans
/
3f277361c3bdd1d5120c7a7654e8acb61994283a
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
formatting
/
heredoc.php
blob: 10fcc5d2272ff6c0de8affee54c936511baca97a [
file
] [
log
] [
blame
]
<?
php
if
(
1
)
{
$str
=
<<<
EOD
Example
of
string
spanning multiple lines
using
heredoc syntax
.
EOD
;
echo
1
;
}
?>