nowdoc_011.phpt 280 B

1234567891011121314151617181920
  1. --TEST--
  2. Nowdocs CAN be used as static scalars.
  3. --FILE--
  4. <?php
  5. require_once 'nowdoc.inc';
  6. class e {
  7. const E = <<<'THISMUSTNOTERROR'
  8. If you DON'T see this, something's wrong.
  9. THISMUSTNOTERROR;
  10. };
  11. print e::E . "\n";
  12. ?>
  13. --EXPECT--
  14. If you DON'T see this, something's wrong.