3v4l.org

run code in 300+ PHP versions simultaneously
<?php abstract class bob{ public $myitem; function __contruct(){ $myitem = 25; } //public function GetItem(){ //return $this->$myitem; //} } class john extends bob{ public function GetItem(){ //echo parent::GetItem(); echo parent->$myitem; } } $j = new john(); $j->GetItem();
Output for 8.1.23 - 8.1.28, 8.2.10 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Undefined constant "parent" in /in/uWalH:22 Stack trace: #0 /in/uWalH(27): john->GetItem() #1 {main} thrown in /in/uWalH on line 22
Process exited with code 255.
Output for 5.4.16
Parse error: syntax error, unexpected '->' (T_OBJECT_OPERATOR), expecting ',' or ';' in /in/tE7sT on line 22
Process exited with code 255.
Output for 5.4.0 - 5.4.15
Parse error: syntax error, unexpected '->' (T_OBJECT_OPERATOR), expecting ',' or ';' in uWalH on line 22
Process exited with code 255.
Output for 5.3.25 - 5.3.26
Parse error: syntax error, unexpected T_OBJECT_OPERATOR, expecting ',' or ';' in /in/tE7sT on line 22
Process exited with code 255.
Output for 5.3.0 - 5.3.24
Parse error: syntax error, unexpected T_OBJECT_OPERATOR, expecting ',' or ';' in uWalH on line 22
Process exited with code 255.

preferences:
73.94 ms | 401 KiB | 71 Q