mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
23 lines
460 B
Plaintext
23 lines
460 B
Plaintext
|
--TEST--
|
||
|
unbraced complex variable replacement test (heredoc)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
require_once 'nowdoc.inc';
|
||
|
|
||
|
print <<<ENDOFHEREDOC
|
||
|
This is heredoc test #s $a, $b, $c['c'], and $d->d.
|
||
|
|
||
|
ENDOFHEREDOC;
|
||
|
|
||
|
$x = <<<ENDOFHEREDOC
|
||
|
This is heredoc test #s $a, $b, $c['c'], and $d->d.
|
||
|
|
||
|
ENDOFHEREDOC;
|
||
|
|
||
|
print "{$x}";
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in %sheredoc_005.php on line 6
|