mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
ef5f3cfdf2
. Improved syntax highlighting and consistency for variables in double-quoted strings and literal text in HEREDOCs and backticks. (Matt) . Optimized interpolated strings to use one less opcode. (Matt)
21 lines
290 B
PHP
21 lines
290 B
PHP
--TEST--
|
|
STATIC heredocs CAN be used as static scalars.
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once 'nowdoc.inc';
|
|
|
|
class e {
|
|
|
|
const E = <<<THISMUSTNOTERROR
|
|
If you DON'T see this, something's wrong.
|
|
THISMUSTNOTERROR;
|
|
|
|
};
|
|
|
|
print e::E . "\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
If you DON'T see this, something's wrong.
|