3v4l.org

run code in 300+ PHP versions simultaneously
<?php $closure = fn (string $str) => "hello {$str}"; echo $closure('via regular')."\n\n\n"; echo $closure->__invoke('via __invoke')."\n\n\n"; print_r(get_class_methods($closure));
Output for git.master, git.master_jit
hello via regular hello via __invoke Array ( [0] => bind [1] => bindTo [2] => call [3] => fromCallable [4] => getCurrent )
Output for rfc.property-hooks
hello via regular hello via __invoke Array ( [0] => bind [1] => bindTo [2] => call [3] => fromCallable )

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:
33.04 ms | 406 KiB | 5 Q