我想例如在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';
Run Code Online (Sandbox Code Playgroud)
请我如何运行我的代码来实现这一目标
使用next()函数:
另外:使用 current() 或 prev()
$array = array('a', 'b', 'c', 'd', 'e', 'f');
$current= current($array); // 'a'
$nextVal = next($array); // 'b'
$nextVal = next($array); // 'c'
// ...
Run Code Online (Sandbox Code Playgroud)
小智 5
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];
Run Code Online (Sandbox Code Playgroud)