gpt4 book ai didi

PHP |通过重新排序从数组中删除元素?

转载 作者:可可西里 更新时间:2023-10-31 23:05:24 24 4
gpt4 key购买 nike

如何删除数组的元素,然后重新排序,而数组中没有空元素?

<?php
$c = array( 0=>12,1=>32 );
unset($c[0]); // will distort the array.
?>

答案/解决方案:array array_values ( array $input )。

<?php
$c = array( 0=>12,1=>32 );
unset($c[0]);
print_r(array_values($c));
// will print: the array cleared
?>

最佳答案

array_values($c)

将返回一个仅包含值的新数组,线性索引。

关于PHP |通过重新排序从数组中删除元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2172937/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com