3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array1 = array ( array ( "Date" => "2019-05-04 18:40:00", "Item" => "Prasanta Kumar Ray", "Code" => null, "Amount" => 150 ) , array ( "Date" => "2019-05-04 21:23:00", "Item" => "Dr Praveenkumar", "Code" =>null , "Amount" => 150 ) ); $array2 = array ( array ( "Date" => "2019-05-04 18:45:00", "Item" => "TC DC ESR", "Code" => null, "Amount" => 60 ) ); $array3 = array_merge_recursive($array1,$array2); print_r($array3); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [Date] => 2019-05-04 18:40:00 [Item] => Prasanta Kumar Ray [Code] => [Amount] => 150 ) [1] => Array ( [Date] => 2019-05-04 21:23:00 [Item] => Dr Praveenkumar [Code] => [Amount] => 150 ) [2] => Array ( [Date] => 2019-05-04 18:45:00 [Item] => TC DC ESR [Code] => [Amount] => 60 ) )

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:
151.42 ms | 407 KiB | 5 Q