Jeroen
Jeroen

Reputation: 145

How can I select a range of indexes from an array?

In python I would do this:

var = ["test","test1","test2","test3"];
test= var[1:3];

Then variable 'test' would be ["test1","test2","test3"]

How can I do this in PHP?

Upvotes: 14

Views: 12071

Answers (1)

Spiny Norman
Spiny Norman

Reputation: 8327

That would be array_slice($var, 1, 3). See also: http://php.net/manual/en/function.array-slice.php.

Complete example:

$var = array("test","test1","test2","test3");
$test = array_slice($var, 1, 3);

Upvotes: 23

Related Questions