重複の可能性:
特定のPHP配列からデータを抽出する方法
特定のキーからすべての要素をフェッチしようとしている配列があります。キーはshard3
です。結果は次のようになります'user'=>'root','password'=>'3', 'db'=>'test', 'port'=>3307
private $shard_list = array (
'shard1' => array( 'host'=>'127.0.0.1',
'user'=>'root',
'password'=>'1',
'db'=>'test',
'port'=>3306
),
'shard2' => array( 'host'=>'127.0.0.2',
'user'=>'root',
'password'=>'2',
'db'=>'test',
'port'=>3307
),
'shard3' => array( 'host'=>'127.0.0.3',
'user'=>'root',
'password'=>'3',
'db'=>'test',
'port'=>3307
),
'shard4' => array( 'host'=>'127.0.0.4',
'user'=>'root',
'password'=>'4',
'db'=>'test',
'port'=>3307
)
のすべての要素を読みたいshard3
。すべての要素を読み取る方法は何ですか?