heredoc_005.phpt 362 B

12345678910111213141516171819202122
  1. --TEST--
  2. unbraced complex variable replacement test (heredoc)
  3. --FILE--
  4. <?php
  5. require_once 'nowdoc.inc';
  6. print <<<ENDOFHEREDOC
  7. This is heredoc test #s $a, $b, $c['c'], and $d->d.
  8. ENDOFHEREDOC;
  9. $x = <<<ENDOFHEREDOC
  10. This is heredoc test #s $a, $b, $c['c'], and $d->d.
  11. ENDOFHEREDOC;
  12. print "{$x}";
  13. ?>
  14. --EXPECTF--
  15. Parse error: %s in %sheredoc_005.php on line 6