Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこの配列を持っています:
$foo = array( 'bar1' => 1, 'bar2' => 2 );
次に、2 番目のキーの名前を直接取得したいと思います。を使用せずにどうすればよいnext()ですか?
next()
$keys=array_keys($foo); echo $keys[1];
キーが 1 つだけ必要で、PHP 5.4 を使用している場合は、1 つのステートメントでそれを逆参照できます。
echo array_keys($foo)[1];