欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-30 15:38:00
...
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 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


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

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频