PHP asort() ফাংশন
উদাহরণ
অ্যাসোসিয়েটেড অ্যারেকে কী-মান অনুযায়ী আদ্যসূত্রে সারিবে:
<?php $age=array("Bill"=>"60","Steve"=>"56","Mark"=>"31"); asort($age); ?>
পরিভাষা ও ব্যবহার
asort() ফাংশন অ্যাসোসিয়েটেড অ্যারেকে কী-মান অনুযায়ী আদ্যসূত্রে সারিবে。
Tip:Please use arsort() The function sorts an associative array in descending order by key value.
Tip:Please use ksort() The function sorts an associative array in ascending order by key name.
Syntax
asort(array,sortingtype);
Parameters | Description |
---|---|
array | Required. Specifies the array to be sorted. |
sortingtype |
Optional. Specifies how to sort the elements/items of the array. Possible values:
|
Description
The asort() function sorts an array while maintaining the index relationship. It is mainly used to sort combined arrays where the order of units is very important.
The optional second parameter contains additional sorting identifiers.
Returns TRUE if successful, otherwise returns FALSE.
Technical Details
Return Value: | Returns TRUE if successful, otherwise returns FALSE. |
PHP Version: | 4+ |