当前位置:网站首页>Introduction notes to PHP zero Foundation (13): array related functions
Introduction notes to PHP zero Foundation (13): array related functions
2022-04-23 16:14:00 【Peng Shiyu psy】
Array related functions
Custom array print function , Easy to view
Sorting function
according to ASCII Sort code
sort
Yes array By itself (value) Ascending sort .( Subscript rearrangement )
rsort
Yes array By itself (value) null .
asort
Yes array Sort itself in ascending order ( Subscript reserved )
arsort
Yes array Sort itself in descending order
ksort
Yes array Press the button itself (key) Ascending sort .
krsort
Yes array Press the key itself (key) null .
shuffle
Random disruption
Pointer function
reset take array The internal pointer of the array returns to the first cell and returns the value of the first array cell .
end take array The internal pointer to the last cell and returns its value .
next Move the internal pointer in the array one bit forward
prev Returns the internal pointer of an array to one bit
current Returns the current value in the array
key Returns the key name of the current cell in the array .
Be careful :next and prev Move the pointer , May move out of the array , Only through end perhaps reset Reset pointer
Example
Other functions
count Statistical array 、Countable The number of all elements in the object
array_push take array As a stack , And push the incoming variable into array At the end of .
array_pop Pop up and return array The value of the last element
array_shift take array The first cell of is moved out and returned as a result
array_unshift Insert one or more cells at the beginning of an array
data structure
- Stack Pressing stack ,FILO First in, then out
- queue line up ,FIFO fifo
Implementation stack :
- front array_unshift/array_shift
- Back array_push/array_pop
Implementation queue :
- Last in first out array_push/array_shift
- Forward and out array_unshift/array_pop
array_reverse Returns a new array whose cells are in reverse order
in_array Check if there is a value in the array
array_keys Returns some or all key names in the array
array_values return input All values in the array and numerically index them .
版权声明
本文为[Peng Shiyu psy]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231521404553.html
边栏推荐
- 运维流程有多重要,听说一年能省下200万?
- Change the icon size of PLSQL toolbar
- 通过Feign在服务之间传递header请求头信息
- The system research problem that has plagued for many years has automatic collection tools, which are open source and free
- Unity shader learning
- JSP learning 3
- 451. 根据字符出现频率排序
- Leetcode-396 rotation function
- Construction of esp32 compilation environment
- Report FCRA test question set and answers (11 wrong questions)
猜你喜欢
Countdown 1 day ~ 2022 online conference of cloud disaster tolerance products is about to begin
The solution of not displaying a whole line when the total value needs to be set to 0 in sail software
下载并安装MongoDB
Sort by character occurrence frequency 451
Postman batch production body information (realize batch modification of data)
VMware Workstation cannot connect to the virtual machine. The system cannot find the specified file
Hypermotion cloud migration helped China Unicom. Qingyun completed the cloud project of a central enterprise and accelerated the cloud process of the group's core business system
Homewbrew installation, common commands and installation path
力扣-198.打家劫舍
Nanny Anaconda installation tutorial
随机推荐
最详细的背包问题!!!
Hypermotion cloud migration helped China Unicom. Qingyun completed the cloud project of a central enterprise and accelerated the cloud process of the group's core business system
Day (9) of picking up matlab
[section 5 if and for]
Application case of GPS Beidou high precision satellite time synchronization system
ESP32编译环境的搭建
Interview question 17.10 Main elements
捡起MATLAB的第(10)天
GRBL学习(二)
Website pressure measurement tools Apache AB, webbench, Apache jemeter
[key points of final review of modern electronic assembly]
PS add texture to picture
下载并安装MongoDB
299. Number guessing game
shell_ two
ESP32_Arduino
Database dbvisualizer Pro reported file error, resulting in data connection failure
Countdown 1 day ~ 2022 online conference of cloud disaster tolerance products is about to begin
The most detailed knapsack problem!!!
RecyclerView advanced use - to realize drag and drop function of imitation Alipay menu edit page