3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait A { function calc1($v) { echo '/ calc1 trait /'.$this->x; } function calc($v) { echo '/ calc trait /'.$this->x; } } class MyClass { use A; public $x; function calc($v) { echo '/ calc class /'; A::calc(5); //parent::calc($v); } } $x=new MyClass(); $x->x = 5; $x->calc(123);
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
/ calc class / Deprecated: Calling static trait method A::calc is deprecated, it should only be called on a class using the trait in /in/sEiLS on line 17 Fatal error: Uncaught Error: Non-static method A::calc() cannot be called statically in /in/sEiLS:17 Stack trace: #0 /in/sEiLS(24): MyClass->calc(123) #1 {main} thrown in /in/sEiLS on line 17
Process exited with code 255.
Output for 8.0.0 - 8.0.30
/ calc class / Fatal error: Uncaught Error: Non-static method A::calc() cannot be called statically in /in/sEiLS:17 Stack trace: #0 /in/sEiLS(24): MyClass->calc(123) #1 {main} thrown in /in/sEiLS on line 17
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
/ calc class / Deprecated: Non-static method A::calc() should not be called statically in /in/sEiLS on line 17 Fatal error: Uncaught Error: Using $this when not in object context in /in/sEiLS:7 Stack trace: #0 /in/sEiLS(17): A::calc(5) #1 /in/sEiLS(24): MyClass->calc(123) #2 {main} thrown in /in/sEiLS on line 7
Process exited with code 255.
Output for 7.3.32 - 7.3.33
/ calc class / Fatal error: Uncaught Error: Using $this when not in object context in /in/sEiLS:7 Stack trace: #0 /in/sEiLS(17): A::calc(5) #1 /in/sEiLS(24): MyClass->calc(123) #2 {main} thrown in /in/sEiLS on line 7
Process exited with code 255.
Output for 5.6.0 - 5.6.40
/ calc class / Deprecated: Non-static method A::calc() should not be called statically, assuming $this from incompatible context in /in/sEiLS on line 17 / calc trait /5
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38
/ calc class / Strict Standards: Non-static method A::calc() should not be called statically, assuming $this from incompatible context in /in/sEiLS on line 17 / calc trait /5

preferences:
286.57 ms | 402 KiB | 375 Q