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); print_r($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 git.master, git.master_jit, rfc.property-hooks
Closure Object ( [this] => Closure Object ( [parameter] => Array ( [$app] => <required> [$dos] => <required> ) ) [parameter] => Array ( [$app] => <required> [$dos] => <required> ) ) Fatal error: Uncaught ArgumentCountError: Too few arguments to function {closure}(), 1 passed in /in/K8ajm on line 30 and exactly 2 expected in /in/K8ajm:50 Stack trace: #0 /in/K8ajm(30): {closure}(Object(Uno)) #1 /in/K8ajm(50): Container::_post('hi@Uno', Object(Closure)) #2 {main} thrown in /in/K8ajm on line 50
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
64.92 ms | 402 KiB | 8 Q