3v4l.org

run code in 300+ PHP versions simultaneously
<?php class my_class { var $my_value = array(); function my_class ($value) { $this->my_value[] = $value; } function set_value ($value) { $this->$my_value = $value; } } $a = new my_class ("a"); $a->my_value[] = "b"; $a->set_value ("c"); $a->my_class("d");
Output for 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Undefined variable $my_value in /in/AlTBa on line 11 Deprecated: Creation of dynamic property my_class::$ is deprecated in /in/AlTBa on line 11
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28
Warning: Undefined variable $my_value in /in/AlTBa on line 11
Output for 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.31, 7.4.0 - 7.4.33
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; my_class has a deprecated constructor in /in/AlTBa on line 2 Notice: Undefined variable: my_value in /in/AlTBa on line 11
Output for 7.3.32 - 7.3.33
Output for 7.0.0 - 7.0.20
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; my_class has a deprecated constructor in /in/AlTBa on line 2 Notice: Undefined variable: my_value in /in/AlTBa on line 11 Fatal error: Uncaught Error: Cannot access empty property in /in/AlTBa:11 Stack trace: #0 /in/AlTBa(17): my_class->set_value('c') #1 {main} thrown in /in/AlTBa on line 11
Process exited with code 255.
Output for 5.1.3 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28
Notice: Undefined variable: my_value in /in/AlTBa on line 11 Fatal error: Cannot access empty property in /in/AlTBa on line 11
Process exited with code 255.
Output for 5.0.5, 5.1.0 - 5.1.2
Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in /in/AlTBa on line 4 Notice: Undefined variable: my_value in /in/AlTBa on line 11 Fatal error: Cannot access empty property in /in/AlTBa on line 11
Process exited with code 255.
Output for 5.0.4
Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in /in/AlTBa on line 4 Notice: Undefined variable: my_value in /in/AlTBa on line 11
Output for 5.0.0 - 5.0.3
Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in /in/AlTBa on line 4 Notice: Undefined variable: my_value in /in/AlTBa on line 11
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9
Notice: Undefined variable: my_value in /in/AlTBa on line 11

preferences:
198.89 ms | 402 KiB | 313 Q