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?
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);
精彩评论