3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = array(1, "apples",2, "oranges",3, "plums"); // array_filter() $lambda = function( $item ) { if ( ctype_alpha($item) ) { return true; } }; $filtered = array_filter( $array, $lambda); var_dump($filtered); // using array_map() $callback = function($item) { return strtoupper($item); }; $nu = array_map( $callback, $filtered); var_dump($nu); // array_walk() $f = function(&$item,$key,$prefix) { $item = "$prefix: $item"; }; array_walk($array, $f, 'phun'); var_dump($array);
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: ctype_alpha(): Argument of type int will be interpreted as string in the future in /in/emcZa on line 6 Deprecated: ctype_alpha(): Argument of type int will be interpreted as string in the future in /in/emcZa on line 6 Deprecated: ctype_alpha(): Argument of type int will be interpreted as string in the future in /in/emcZa on line 6 array(3) { [1]=> string(6) "apples" [3]=> string(7) "oranges" [5]=> string(5) "plums" } array(3) { [1]=> string(6) "APPLES" [3]=> string(7) "ORANGES" [5]=> string(5) "PLUMS" } array(6) { [0]=> string(7) "phun: 1" [1]=> string(12) "phun: apples" [2]=> string(7) "phun: 2" [3]=> string(13) "phun: oranges" [4]=> string(7) "phun: 3" [5]=> string(11) "phun: plums" }

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:
45.11 ms | 403 KiB | 8 Q