php-src/Zend/tests/heredoc_005.phpt

23 lines
362 B
Plaintext
Raw Normal View History

2008-02-12 09:28:30 +00:00
--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--
2008-08-10 00:34:42 +00:00
Parse error: %s in %sheredoc_005.php on line 6