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); //print $sorted[0][0]['date']; print $sorted[0][0].date; ?>
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { [0]=> array(2) { [0]=> object(stdClass)#1 (2) { ["content"]=> string(15) "Grüne Logistik" ["date"]=> string(19) "2014-04-02 14:08:52" } [1]=> object(stdClass)#2 (2) { ["content"]=> string(27) "bellomondo ist klimaneutral" ["date"]=> string(19) "2014-03-06 09:15:59" } } [1]=> array(1) { [0]=> object(stdClass)#3 (2) { ["content"]=> string(18) "en test post title" ["date"]=> string(19) "2014-04-07 15:31:19" } } } ---------------------array(3) { [0]=> object(stdClass)#1 (2) { ["content"]=> string(15) "Grüne Logistik" ["date"]=> string(19) "2014-04-02 14:08:52" } [1]=> object(stdClass)#2 (2) { ["content"]=> string(27) "bellomondo ist klimaneutral" ["date"]=> string(19) "2014-03-06 09:15:59" } [2]=> object(stdClass)#3 (2) { ["content"]=> string(18) "en test post title" ["date"]=> string(19) "2014-04-07 15:31:19" } } Fatal error: Uncaught Error: Cannot use object of type stdClass as array in /in/3iWF7:21 Stack trace: #0 {main} thrown in /in/3iWF7 on line 21
Process exited with code 255.

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