3v4l.org

run code in 300+ PHP versions simultaneously
<?php $wrap = array( array( array("content" => "Grüne Logistik", "date" => "2014-04-02 14:08:52"), array("content" => "bellomondo ist klimaneutral", "date" => "2014-03-06 09:15:59"), ), array( array("content" => "en test post title", "date" => "2014-04-07 15:31:19"), ), ); var_dump($wrap); echo '---------------------'; //$sorted = array(); //foreach($wrap as $content) { // $sorted[] = $content; //} $sorted = call_user_func_array('array_merge', $wrap); var_dump($sorted); ?>
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { [0]=> array(2) { [0]=> array(2) { ["content"]=> string(15) "Grüne Logistik" ["date"]=> string(19) "2014-04-02 14:08:52" } [1]=> array(2) { ["content"]=> string(27) "bellomondo ist klimaneutral" ["date"]=> string(19) "2014-03-06 09:15:59" } } [1]=> array(1) { [0]=> array(2) { ["content"]=> string(18) "en test post title" ["date"]=> string(19) "2014-04-07 15:31:19" } } } ---------------------array(3) { [0]=> array(2) { ["content"]=> string(15) "Grüne Logistik" ["date"]=> string(19) "2014-04-02 14:08:52" } [1]=> array(2) { ["content"]=> string(27) "bellomondo ist klimaneutral" ["date"]=> string(19) "2014-03-06 09:15:59" } [2]=> array(2) { ["content"]=> string(18) "en test post title" ["date"]=> string(19) "2014-04-07 15:31:19" } }

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