php - 获取 php 数组中的下一个值

标签 php arrays

我想获取 PHP 数组中的下一个值,例如:

$array = array('a', 'b', 'c', 'd', 'e', 'f');
$current_array_val = 'c';
//so I want to run a code to get the next value in the array and
$next_array_val = 'd';
//And also another code to get the previous value which will be
$prev_array_val = 'b';

请问我如何运行我的代码来实现此目的

最佳答案

http://php.net/manual/ro/function.array-search.php

$index = array_search($current_array_val, $array);
if($index !== false && $index > 0 ) $prev = $array[$index-1];
if($index !== false && $index < count($array)-1) $next = $array[$index+1];

关于php - 获取 php 数组中的下一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37591894/

相关文章:

PHP React\ZMQ\Context 'ON' 方法未触发

php - 如何获取提交后检查的表格单元格中的数据

php - 正则表达式替换 PHP 中的特殊字符?

javascript - 从 "decorated"数组中删除命名属性

javascript - 以对象数组形式检索数据 ||火力基地

android - 从改造响应中获取 JSONArray

arrays - 使用 2 个单独的列定义数组

JavaScript 按类型和大小对变量进行验证

php - MySQL 按日期分组并从 unix 时间戳转换

arrays - 类型末尾的双问号是什么意思?