<?php class T { private $str1 = "hello"; private $str2 = "hello{$str1}"; public function __construct() { echo $this->str2; } }; new T(); ?>
Standard input is empty
Standard output is empty
PHP Parse error: syntax error, unexpected '"' in /home/PVIJaO/prog.php on line 5