PHP 获取数组任意下标key的上一个prev和下一个next下标值_PHP教程
程序员文章站
2022-04-30 15:34:36
...
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 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
上一篇: 在Windows 上配置 php和mongodb 数据库
下一篇: php批改表单中的内容不成功