3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { static function static_method() { echo "Here's your static method: Foo!\n"; } function static_method_caller() { echo "static_method_caller says: "; $this->static_method(); } function non_static() { echo "I am not a static method\n"; } } $t = new Test(); $t->static_method(); $t->static_method_caller(); Test::non_static();
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
Here's your static method: Foo! static_method_caller says: Here's your static method: Foo! Fatal error: Uncaught Error: Non-static method Test::non_static() cannot be called statically in /in/jF7eL:20 Stack trace: #0 {main} thrown in /in/jF7eL on line 20
Process exited with code 255.
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Here's your static method: Foo! static_method_caller says: Here's your static method: Foo! Deprecated: Non-static method Test::non_static() should not be called statically in /in/jF7eL on line 20 I am not a static method
Output for 7.3.32 - 7.3.33
Here's your static method: Foo! static_method_caller says: Here's your static method: Foo! I am not a static method
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
Here's your static method: Foo! static_method_caller says: Here's your static method: Foo! Strict Standards: Non-static method Test::non_static() should not be called statically in /in/jF7eL on line 20 I am not a static method

preferences:
232.01 ms | 402 KiB | 323 Q