3v4l.org

run code in 300+ PHP versions simultaneously
<?php abstract class bob{ function __contruct(){ $myitem = 25; } public function GetItem(){ return $myitem; } public var $myitem; } class john extends bob{ public function GetItem(){ echo parent::GetItem(); echo parent::$myitem; } } $j = new john(); $j->GetItem();
Output for 5.4.16
Parse error: syntax error, unexpected 'var' (T_VAR), expecting variable (T_VARIABLE) in /in/4Auh0 on line 11
Process exited with code 255.
Output for 5.4.0 - 5.4.15
Parse error: syntax error, unexpected 'var' (T_VAR), expecting variable (T_VARIABLE) in 3e8dW on line 11
Process exited with code 255.
Output for 5.3.26
Parse error: syntax error, unexpected T_VAR, expecting T_VARIABLE in /in/4Auh0 on line 11
Process exited with code 255.
Output for 5.3.25
Parse error: syntax error, unexpected T_VAR, expecting T_VARIABLE in /in/3e8dW on line 11
Process exited with code 255.
Output for 5.3.0 - 5.3.24
Parse error: syntax error, unexpected T_VAR, expecting T_VARIABLE in 3e8dW on line 11
Process exited with code 255.

preferences:
172.09 ms | 1399 KiB | 51 Q