3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Man { public $Vik; public $Staty; public function input($v, $s) { $this-> Vik=v; $this->Staty=s; } } class Gayduk extends Man { public $Name; public $Priz; public function input1($n, $p) { $this->Name=n; $this->Priz=p; } public function print() { echo 'Вік: ' .Vik; echo 'Стать: ' .Staty; echo 'Імя: ' .Name; echo 'прізвище: ' .Priz; } } $man = new Man(); $rsg = new Gayduk(); $man->input('18', 'Чоловіча'); $rsg->input1('Роман', 'Гайдук') ?>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Undefined constant "v" in /in/98v4B:8 Stack trace: #0 /in/98v4B(33): Man->input('18', '\xD0\xA7\xD0\xBE\xD0\xBB\xD0\xBE\xD0\xB2\xD1\x96\xD1\x87\xD0...') #1 {main} thrown in /in/98v4B on line 8
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: Use of undefined constant v - assumed 'v' (this will throw an Error in a future version of PHP) in /in/98v4B on line 8 Warning: Use of undefined constant s - assumed 's' (this will throw an Error in a future version of PHP) in /in/98v4B on line 9 Warning: Use of undefined constant n - assumed 'n' (this will throw an Error in a future version of PHP) in /in/98v4B on line 18 Warning: Use of undefined constant p - assumed 'p' (this will throw an Error in a future version of PHP) in /in/98v4B on line 19
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33
Notice: Use of undefined constant v - assumed 'v' in /in/98v4B on line 8 Notice: Use of undefined constant s - assumed 's' in /in/98v4B on line 9 Notice: Use of undefined constant n - assumed 'n' in /in/98v4B on line 18 Notice: Use of undefined constant p - assumed 'p' in /in/98v4B on line 19
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
Parse error: syntax error, unexpected 'print' (T_PRINT), expecting identifier (T_STRING) in /in/98v4B on line 21
Process exited with code 255.

preferences:
264.62 ms | 402 KiB | 376 Q