gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 02:10:10 24 4
gpt4 key购买 nike

我想获取 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com