Veteran talks about PHP array sorting_PHP tutorial
PHP is still relatively commonly used, so I studied PHP array sorting and shared it with you here. I hope it will be useful to everyone. After understanding usort custom sorting, let's take a look at sort(). This function can be said to be the originator of sorting functions in arrays. You must have found that all PHP array sorting functions have sort as the suffix. Function prototype: bool sort (array &array [, int sort_flags]) Description: Basically every function has an optional parameter, and sort is no exception. A convention specified by this optional parameter.
The optional types are as follows:
◆SORT_REGULAR - Normal comparison unit (does not change type) // Sort by ASCII value (B is greater than a)
◆SORT_NUMERIC - Unit is treated as a number Comparison //This parameter is commonly used for integers and floating point numbers
◆SORT_STRING – units are compared as strings
◆SORT_LOCALE_STRING – units are compared as strings according to the current locale settings
Let’s look at an example, from the help manual:
<ol class="dp-xml"> <li class="alt"><span><strong><font color="#006699"><span class="tag"></span><span class="tag-name">php</span></font></strong><span> </span></span></li> <li class=""> <span>$</span><span class="attribute"><font color="#ff0000">fruits</font></span><span> = </span><span class="attribute-value"><font color="#0000ff">array</font></span><span>("lemon", "orange", "banana", "apple"); </span> </li> <li class="alt"><span>sort($fruits); </span></li> <li class=""> <span>foreach ($fruits as $</span><span class="attribute"><font color="#ff0000">key</font></span><span> =</span><span class="tag"><strong><font color="#006699">></font></strong></span><span> $val) { </span> </li> <li class="alt"><span>echo "fruits[".$key."] = " . $val . "n"; </span></li> <li class=""><span>} </span></li> <li class="alt"> <span></span><span class="tag"><strong><font color="#006699">?></font></strong></span><span> </span> </li> </ol>
The result of this PHP array sorting is as follows:
<ol class="dp-xml"> <li class="alt"><span><span>fruits[0] = apple </span></span></li> <li class=""><span>fruits[1] = banana </span></li> <li class="alt"><span>fruits[2] = lemon </span></li> <li class=""><span>fruits[3] = orange </span></li> </ol>
You can find that it turns out to be lemon with index 0. After sorting again, it becomes apple. In order to keep the original keys/values unchanged, you can replace sort() with asort(). In addition, these two functions arrange the keys in ascending order (a is in front of b). If you want to make it in descending order, just use rsort() instead. The corresponding arsort() maintains the original key/value correlation.
The following is a brief introduction to the ksort() function
<ol class="dp-xml"> <li class="alt"><span><span>shuffle()//函数的使用 </span></span></li> <li class=""><span>Shuffle()//用来对一个数组进行随机排序,这个有点像抽签,其他的就不多说了。到用的时候再看吧。 </span></li> <li class="alt"><span>array_rand()//函数的使用 </span></li> <li class=""><span>array_rand()//函数和shuffle()差不多,也是随机返回数组中的元素,如下调用: </span></li> <li class="alt"><span>array_rand ( array [, int num_req] ) //可选参数指出你要返回的个数。 </span></li> </ol>
At this point I think we have sorted the array. Now that I understand, if there are any "leftovers", I'll make up for it later.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
