توابع sort() در PHP

مثال

برای مرتب کردن عناصر آرایه $cars به ترتیب الفبایی به صورت افزایشی:

<?php
$cars = array("Volvo", "BMW", "Toyota");
sort($cars);
?>

Run Instances

تعریف و استفاده

توابع sort() آرایه‌های شمارشی را به ترتیب افزایشی مرتب می‌کند.

توضیحات:این تابع به واحد‌های آرایه کلید جدیدی اختصاص می‌دهد. کلید‌های موجود حذف خواهند شد.

Returns TRUE if successful, otherwise returns FALSE.

Tip:Please use rsort() The function sorts the index array in descending order.

Syntax

sort(array,sortingtype);
Parameters Description
array Required. Specify the array to be sorted.
sortingtype

Optional. Specify how to compare the elements/items of the array. Possible values:

  • 0 = SORT_REGULAR - Default. Arrange each item in regular order (Standard ASCII, do not change type)
  • 1 = SORT_NUMERIC - Treat each item as a number.
  • 2 = SORT_STRING - Treat each item as a string.
  • 3 = SORT_LOCALE_STRING - Treat each item as a string, based on the current locale (can be changed via setlocale()).
  • 4 = SORT_NATURAL - Treat each item as a string, using a natural sorting similar to natsort().
  • 5 = SORT_FLAG_CASE - Can be combined (bitwise OR) with SORT_STRING or SORT_NATURAL to sort strings without case sensitivity.

Technical Details

Return Value: Returns TRUE if successful, otherwise returns FALSE.
PHP Version: 4+

More Examples

Example 1

Sort the elements of the array $numbers in ascending order by number:

<?php
$numbers=array(4,6,2,22,11);
sort($numbers);
?>

Run Instances