Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
heredoc_012.php
blob: 73f7483bfcf411669d412a2cad76c2a7ec8e50aa [
file
]
--
TEST
--
Heredoc
with
double
quotes
--
FILE
--
<?
php
$test
=
"foo"
;
$var
=
<<<
"MYLABEL"
test
:
$test
MYLABEL
;
echo $var
;
?>
--
EXPECT
--
test
:
foo