3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = array(1, "apples",2, "oranges",3, "plums"); $filtered = array_filter($array, 'ctype_alpha'); $callback = function($item) { return strtoupper($item); }; $nu = array_map( "strtoupper", $filtered); var_dump($nu); ?>
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/r8Cve on line 3 Deprecated: ctype_alpha(): Argument of type int will be interpreted as string in the future in /in/r8Cve on line 3 Deprecated: ctype_alpha(): Argument of type int will be interpreted as string in the future in /in/r8Cve on line 3 array(3) { [1]=> string(6) "APPLES" [3]=> string(7) "ORANGES" [5]=> string(5) "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:
44.04 ms | 402 KiB | 8 Q