Skip to content

Instantly share code, notes, and snippets.

@platoosom
Last active January 14, 2016 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save platoosom/f23045522e0c19f53939 to your computer and use it in GitHub Desktop.
Save platoosom/f23045522e0c19f53939 to your computer and use it in GitHub Desktop.
<?php
$fruits = array();
$fruits["1"] = '1. Mango';
$fruits["2.1"] = '2.1 Melon';
$fruits["2"] = '2. Orange';
$fruits["1.1"] = '1.1 Durien';
ksort($fruits);
var_dump($fruits);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment