3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { $name = null; function __construct($name) { $this->name = $name; } function getName() { return $this->name; } } $test = new Test('test'); echo $test->getName();
Output for 5.4.0 - 5.4.4
Parse error: syntax error, unexpected '$name' (T_VARIABLE), expecting function (T_FUNCTION) in /in/VVolm on line 5
Process exited with code 255.
Output for 5.3.0 - 5.3.14
Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in /in/VVolm on line 5
Process exited with code 255.

preferences:
168.94 ms | 1395 KiB | 27 Q