• 冒险村物语
  • 英雄无敌3塔防
  • 驾考家园手游

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

2015-05-27

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


(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)

人气推荐

知识阅读

精彩推荐

  • 游戏
  • 软件
查看更多>>