3v4l.org

run code in 300+ PHP versions simultaneously
<?php $gatos = array( array( "id" => 1, "name" => "Titus", "fecha" => "2013-05-14 00:00:00", ), array( "id" => 2, "name" => "Gato", "fecha" => "2010-08-11 00:00:00", ), array( "id" => 3, "name" => "Pepito", "fecha" => "2011-02-28 00:00:00", ), array( "id" => 4, "name" => "Juancito", "fecha" => "2008-05-30 00:00:00", ), ); usort($gatos, function($gato1,$gato2){ return strcmp(date_create($gato1["fecha"])->format("md"),date_create($gato2["fecha"])->format("md")); }); var_dump($gatos);
Output for git.master, git.master_jit, rfc.property-hooks
array(4) { [0]=> array(3) { ["id"]=> int(3) ["name"]=> string(6) "Pepito" ["fecha"]=> string(19) "2011-02-28 00:00:00" } [1]=> array(3) { ["id"]=> int(1) ["name"]=> string(5) "Titus" ["fecha"]=> string(19) "2013-05-14 00:00:00" } [2]=> array(3) { ["id"]=> int(4) ["name"]=> string(8) "Juancito" ["fecha"]=> string(19) "2008-05-30 00:00:00" } [3]=> array(3) { ["id"]=> int(2) ["name"]=> string(4) "Gato" ["fecha"]=> string(19) "2010-08-11 00:00:00" } }

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.02 ms | 402 KiB | 8 Q