blob: 1ffcf7383183ee350dcd1be91a327fffc5c1b40f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Heredoc with double quotes and wrong prefix
--FILE--
<?php
$test = "foo";
$var = prefix<<<"MYLABEL"
test: $test
MYLABEL;
echo $var;
?>
--EXPECTF--
Parse error: %s in %sheredoc_013.php on line %d
|