3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Dos{ function __construct(){ return 888888; } } class Container{ public static function _post($campo = 0, $callback = false) { list($post_key, $class) = explode('@', $campo); if (!empty($_POST)) { foreach (filter_var_array($_POST, FILTER_SANITIZE_ENCODED) as $key => $val) { if ($key == $post_key && empty($callback)) { return $val; } if ($key == $post_key && is_callable($callback)) { $oj = $callback->bindTo($callback); var_dump($oj()); $obj = (class_exists($class)) ? new $class() : ""; (class_exists($class)) ? call_user_func($callback, $obj) : call_user_func($callback); } } } return false; } } class Uno{ public $uno = 1; function __construct(){ return 123; } } $_POST['hi'] = true; Container::_post('hi@Uno', function($app,Dos $dos){ var_dump($dos); });
Output for 8.2.0 - 8.2.18, 8.3.0 - 8.3.7
Fatal error: Uncaught ArgumentCountError: Too few arguments to function Closure::{closure}(), 0 passed in /in/mACkv on line 28 and exactly 2 expected in /in/mACkv:50 Stack trace: #0 /in/mACkv(28): Closure->{closure}() #1 /in/mACkv(50): Container::_post('hi@Uno', Object(Closure)) #2 {main} thrown in /in/mACkv on line 50
Process exited with code 255.
Output for 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28
Fatal error: Uncaught ArgumentCountError: Too few arguments to function Closure::{closure}(), 0 passed in /in/mACkv on line 28 and exactly 2 expected in /in/mACkv:50 Stack trace: #0 /in/mACkv(28): Closure->{closure}() #1 /in/mACkv(53): Container::_post('hi@Uno', Object(Closure)) #2 {main} thrown in /in/mACkv on line 50
Process exited with code 255.
Output for 7.0.0 - 7.0.20
Warning: Missing argument 1 for Closure::{closure}(), called in /in/mACkv on line 28 and defined in /in/mACkv on line 50 Fatal error: Uncaught TypeError: Argument 2 passed to Closure::{closure}() must be an instance of Dos, none given, called in /in/mACkv on line 28 and defined in /in/mACkv:50 Stack trace: #0 /in/mACkv(28): Closure->{closure}() #1 /in/mACkv(53): Container::_post('hi@Uno', Object(Closure)) #2 {main} thrown in /in/mACkv on line 50
Process exited with code 255.
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
Warning: Missing argument 1 for Closure::{closure}(), called in /in/mACkv on line 28 and defined in /in/mACkv on line 50 Catchable fatal error: Argument 2 passed to Closure::{closure}() must be an instance of Dos, none given, called in /in/mACkv on line 28 and defined in /in/mACkv on line 50
Process exited with code 255.

preferences:
185.6 ms | 402 KiB | 229 Q