当前位置:Gxlcms > PHP教程 > PHP获取数组随意下标key的上一个prev和下一个next下标值

PHP获取数组随意下标key的上一个prev和下一个next下标值

时间:2021-07-01 10:21:17 帮助过:31人阅读

PHP 获取数组任意下标key的上一个prev和下一个next下标值

PHP 获取数组任意下标key的上一个prev和下一个next下标值


$value){$steps->add($key);}$steps->setCurrent(3);//参数为key值echo '上一个下标:'.$steps->getPrev()."
";echo '指定的下标:'.$steps->getCurrent()."
";echo '下一个下标:'.$steps->getNext()."
";class Steps { private $all; private $count; private $curr; function __construct() { $this->count = 0; } function add($step) { $this->count++; $this->all[$this->count] = $step; } function setCurrent($step) { reset($this->all); for ($i = 1; $i <= $this->count; $i++) { if ($this->all[$i] == $step) break; next($this->all); } $this->curr = current($this->all); } function getCurrent() { return $this->curr; } function getNext() { self::setCurrent($this->curr); return next($this->all); } function getPrev() { self::setCurrent($this->curr); return prev($this->all); }}

打印结果:

上一个下标:2指定的下标:3下一个下标:4


人气教程排行