Foreach ループでインデックスにアクセスするにはどうすればよいですか?

DDD
リリース: 2024-11-14 15:20:02
オリジナル
619 人が閲覧しました

How Do You Access the Index in a Foreach Loop?

Unveiling the Index Mystery in Foreach Loops

In a traditional for loop, accessing the current index is straightforward with variables like $i. However, this convenience seems to vanish in foreach loops. Can we uncover that hidden index for foreach iteration?

The answer lies in the syntax of foreach loops. Unlike for loops, foreach operates based on a key-value mapping. Each element in the iterated array or object is assigned a key and a value.

Eureka! The Truth Revealed

The secret to accessing the foreach index lies within the $key variable. Every time a foreach loop encounters an element, it assigns a unique key to it. This key represents the element's index or position within the collection.

Example Illumination

Let's consider the following array:

$array = ['apple', 'banana', 'cherry'];
ログイン後にコピー

Using a foreach loop to iterate through this array:

foreach ($array as $key => $value) {
    // $key contains the index of the current element
    echo "Index: $key, Value: $value\n";
}
ログイン後にコピー

As you can see, the $key variable holds the index of the element. In this example, the output would be:

Index: 0, Value: apple
Index: 1, Value: banana
Index: 2, Value: cherry
ログイン後にコピー

So, while $i remains the trusty index guide in for loops, embrace $key as the key to unlocking the index mystery in foreach loops.

以上がForeach ループでインデックスにアクセスするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート