如何在 PHP 中重新索引数组值
重新索引数组以分配从 0 开始的数字键是 PHP 中的常见要求PHP 编程。考虑以下数组:
<code class="php">$array = [ 'id' => 3, 'user_id' => 1, 'clan_id' => 1, 'date' => '2009-09-24 09:02:05', // ... ];</code>
为了重新索引该数组,PHP 提供了 array_values() 函数。当应用于数组时,它会生成一个由原始数组的值组成的新数组,数字键从 0 开始:
<code class="php">$reindexedArray = array_values($array); // Output: /* Array ( [0] => 3 [1] => 1 [2] => 1 [3] => 2009-09-24 09:02:05 // ... ) */</code>
当您需要迭代一个数组时,array_values() 函数特别有用数组按顺序排列并依赖于索引值。通过使用重新索引的数组,您可以避免处理不可预测或不规则的键名称。
以上是如何在 PHP 中使用 array_values() 重新索引数组?的详细内容。更多信息请关注PHP中文网其他相关文章!