blob: fa404567d0dc2567c6ac187bd20e7b02f5a137dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Heredoc with double quotes syntax but missing second quote
--FILE--
<?php
$test = "foo";
$var = <<<"MYLABEL
test: $test
MYLABEL;
echo $var;
?>
--EXPECTF--
Parse error: syntax error, unexpected T_SL in %sheredoc_014.php on line %d
|