Showing posts with label sort an array in php. Show all posts
Showing posts with label sort an array in php. Show all posts

how can sort an array in php

how can sort an array in php



<?php
$myworld = array("a"=>"php","b"=>"learning","c"=>"i'm");
asort($myworld);
print_r($myworld);
?>

Out put will be
Array
(
[c] => i'm
[b] => learning
[a] => php
)