3v4l.org

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

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:
33.88 ms | 402 KiB | 8 Q