Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

What is the simplest solution to increase by 1 all keys in an array?

BEFORE:

$arr[0] = 'a';
$arr[1] = 'b';
$arr[2] = 'c';

AFTER:

$arr[1] = 'a';
$arr[2] = 'b';
$arr[3] = 'c';
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
201 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can use

$start_zero = array_values($array); /* Re-Indexing Array To Start From Zero */

And if you want to start it from index 1 use

$start_one = array_combine(range(1, count($array)), array_values($array));

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...