3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { static function b() { return 'soy b static'; } function a() { return 'soy a'; } } print (new a)->a(); print call_user_func([new a, 'a']); print call_user_func_array([new a, 'a'],);
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
soy asoy a Fatal error: Uncaught ArgumentCountError: call_user_func_array() expects exactly 2 arguments, 1 given in /in/skDoY:21 Stack trace: #0 /in/skDoY(21): call_user_func_array(Array) #1 {main} thrown in /in/skDoY on line 21
Process exited with code 255.
Output for 7.3.16 - 7.3.31, 7.4.3 - 7.4.25, 7.4.27 - 7.4.33
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; A has a deprecated constructor in /in/skDoY on line 3 soy asoy a Warning: call_user_func_array() expects exactly 2 parameters, 1 given in /in/skDoY on line 21
Output for 7.3.32 - 7.3.33, 7.4.26
soy asoy a Warning: call_user_func_array() expects exactly 2 parameters, 1 given in /in/skDoY on line 21
Output for 5.4.0 - 5.4.22, 7.2.29 - 7.2.33
Parse error: syntax error, unexpected ')' in /in/skDoY on line 21
Process exited with code 255.
Output for 5.3.0 - 5.3.27
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/skDoY on line 19
Process exited with code 255.

preferences:
139.86 ms | 401 KiB | 191 Q