3v4l.org

run code in 300+ PHP versions simultaneously
<?php $label_list = explode(',', '111, 222, 333'); foreach($label_list as &$label_item) { $label_item = trim(mb_strtolower($label_item)); } unset($label_item); var_dump($label_list); // source list foreach ($label_list as $label_item) { var_dump($label_list); //? wtf list }
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> string(3) "111" [1]=> string(3) "222" [2]=> string(3) "333" } array(3) { [0]=> string(3) "111" [1]=> string(3) "222" [2]=> string(3) "333" } array(3) { [0]=> string(3) "111" [1]=> string(3) "222" [2]=> string(3) "333" } array(3) { [0]=> string(3) "111" [1]=> string(3) "222" [2]=> string(3) "333" }

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