mirror of
https://github.com/php/php-src.git
synced 2025-01-24 20:53:37 +08:00
17 lines
156 B
Plaintext
17 lines
156 B
Plaintext
|
--TEST--
|
||
|
Testing nowdoc in default value for property
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
class foo {
|
||
|
public $bar = <<<'EOT'
|
||
|
bar
|
||
|
EOT;
|
||
|
}
|
||
|
|
||
|
print "ok!\n";
|
||
|
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
ok!
|