The next array item gets the index 15:
<?php $cars[5] = "Volvo"; $cars[7] = "BMW"; $cars[14] = "Toyota"; array_push($cars, "Ford"); var_dump($cars); ?>
下一个数组项的索引是15
array(4) { [5]=> string(5) "Volvo" [7]=> string(3) "BMW" [14]=> string(6) "Toyota" [15]=> string(4) "Ford" }