PHPのarray_reduceを使用して現在のアイテムのインデックスを取得する方法
方法1: array_reduceとキーの比較を使用する方法$array = [10, 20, 30, 40, 50]; $currentItem = 30; $index = array_reduce($array, function ($carry, $item) use ($currentItem) { if ($item === $currentItem) { return count($carry); } $carry[] = $item; return $carry; }, []); echo "現在のアイテムのインデックス: " .>>More