php-src/Zend/tests/nowdoc_011.phpt

21 lines
280 B
Plaintext
Raw Normal View History

2008-02-12 09:27:45 +00:00
--TEST--
Nowdocs CAN be used as static scalars.
--FILE--
<?php
require_once 'nowdoc.inc';
class e {
2018-09-16 17:16:42 +00:00
2008-02-12 09:27:45 +00:00
const E = <<<'THISMUSTNOTERROR'
If you DON'T see this, something's wrong.
THISMUSTNOTERROR;
};
print e::E . "\n";
?>
--EXPECT--
2008-02-12 09:27:45 +00:00
If you DON'T see this, something's wrong.