PHP uses unset () to delete a cell (key) in an array
This article mainly introduces PHP using unset () to delete a cell (key) in the array method, an example of the unset function in the deletion of the array unit of the use of skills, the need for friends can refer to the next
This example describes how PHP uses unset () to delete a cell (key) in an array. Share to everyone for your reference. The specific analysis is as follows:
Unset can either delete a variable or delete a cell in the array. It is important to note, however, that the array does not rebuild the index.
Examples are as follows:
?
1 2 3 4 5 6 |
$arr = Array ("Chaoyang", "Haidian", "Xicheng", "Dongcheng", "Fengtai"); Unset ($arr [3]); echo " "; Print_r ($arr); ?> |
The output results are as follows:
?
1 2 3 4 5 6 7 |
Array ( [0] = Chaoyang [1] = Haidian [2] = Xicheng [4] = Fengtai ) |
I hope this article is helpful to everyone's PHP programming.
http://www.bkjia.com/PHPjc/966912.html www.bkjia.com true http://www.bkjia.com/PHPjc/966912.html techarticle PHP uses unset () to delete a cell (key) in an array this article mainly introduces the method of using unset () to remove a cell (key) in an array, and the example analyzes the unset function in the delete ...