> Online tutorial : asort() in php
Showing posts with label asort() in php. Show all posts
Showing posts with label asort() in php. Show all posts

asort() in php

asort() function sorts an array by the values.The values keep their original keys.
syntax
asort(array,sorttype)


<?php
$sum=array(0=>"apple",1=>"orange",2=>"pine apple");
asort($sum);
print_r($sum);

?>

Output
Array([0]=>apple
[1]=>orange
[2]=>pine apple)