fork(1) download
  1. <?php
  2. class T
  3. {
  4. private $str1 = "hello";
  5. private $str2 = "hello{$str1}";
  6.  
  7. public function __construct()
  8. {
  9. echo $this->str2;
  10. }
  11. };
  12.  
  13. new T();
  14. ?>
Runtime error #stdin #stdout #stderr 0.01s 20592KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected '"' in /home/PVIJaO/prog.php on line 5