?? ??
PHP - ?? ?? ??
? ???? ?? PHP ?? ?? ??? ??? ?????.
?? () - ??? ?????? ??
rsort() - ??? ?????? ??
asort() - ?? ?? ????? ?? ?? ??? ?????? ??
ksort() - ????? ?? ?? ?????? ??? ??
arsort() - ????? ?? ?? ?????? ?? ?? krsort() - ?????? ?? ??
sort() - ??? ?????? ??
?? ???? $cars ??? ??? ??? ?????? ?????. ?
<?php $cars=array("Volvo","BMW","Toyota"); sort($cars); ?>
?? ???? $numbers ??? ??? ?? ?????? ?????.
?
<?php $numbers=array(4,6,2,22,11); sort($numbers); ?>rsort() - ??? ?????? ?????.
?? ???? $cars ??? ??? ??? ?????? ?????. ?
<?php $cars=array("Volvo","BMW","Toyota"); rsort($cars); ?>
?? ???? $numbers ??? ??? ?????. ?? ??????:
?
<?php $numbers=array(4,6,2,22,11); rsort($numbers); ?>asort() - ?? ?? ?? ?????? ??? ??
?? ?? ?? ?? ?? ??? ?????. ??? ?????? ?????: ?
<?php $age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43"); asort($age); ?>ksort() - ??? ?? ?? ?????? ??? ?????. ??
?? ?? ??? ???? ???. ?? ??? ?? ?? ?????? ?????. Instance
<?php $age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43"); ksort($age); ?>arsort( ) - ?? ?? ?? ?????? ?? ??
?? ???? ?? ??? ?? ?? ?? ?????? ?????. ?
<?php $age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43"); arsort($age); ?>
krsort() - ?? ?? ?? ???? ?????? ??? ?????
. ????? ?? ??? ?? ?? ?? ?????? ?????.
Instance
????