3v4l.org

run code in 500+ PHP versions simultaneously
<?php $array = array( array('a' => '101', 'b' => '105', 'c' => '103'), array('a' => '', 'b' => '', 'c' => ''), array('a' => '101', 'b' => '105', 'c' => '103'), ); $result = array_filter($array, 'implode'); var_dump($result);
Output for git.master_jit, git.master, rfc.property-hooks
array(2) { [0]=> array(3) { ["a"]=> string(3) "101" ["b"]=> string(3) "105" ["c"]=> string(3) "103" } [2]=> array(3) { ["a"]=> string(3) "101" ["b"]=> string(3) "105" ["c"]=> string(3) "103" } }

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:
36.39 ms | 2101 KiB | 4 Q