3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { public function test() { if (isset($this)) { echo "Mam this!\n"; } else { echo "NEmam this!\n"; } } } $test = new Test; $test->test(); $test::test();
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Mam this! Fatal error: Uncaught Error: Non-static method Test::test() cannot be called statically in /in/RZTAb:19 Stack trace: #0 {main} thrown in /in/RZTAb on line 19
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 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; Test has a deprecated constructor in /in/RZTAb on line 3 Mam this! Mam this! Fatal error: Uncaught Error: Non-static method Test::test() cannot be called statically in /in/RZTAb:19 Stack trace: #0 {main} thrown in /in/RZTAb on line 19
Process exited with code 255.
Output for 7.3.32 - 7.3.33
Mam this! Mam this! Fatal error: Uncaught Error: Non-static method Test::test() cannot be called statically in /in/RZTAb:19 Stack trace: #0 {main} thrown in /in/RZTAb on line 19
Process exited with code 255.
Output for 5.6.0 - 5.6.29
Mam this! Mam this! Fatal error: Non-static method Test::test() cannot be called statically in /in/RZTAb on line 19
Process exited with code 255.

preferences:
166.39 ms | 401 KiB | 204 Q