ホームページ >バックエンド開発 >PHPチュートリアル >この配列を解析する方法を教えてください。ありがとう。
Array( [doctorDate] => Array ( [0] => Array ( [doctorOfDate] => 2013-10-02 [orderingCount] => 12 ) [1] => Array ( [doctorOfDate] => 2013-10-03 [orderingCount] => 8 ) ) )
とはどういう意味ですか?何をしたいですか
配列の名前が次であるとします。 test
test['doctorDate'][0]['doctorOfDate']=2013-10-02
test['doctorDate'][0]['orderingCount' ]=12
test['doctorDate'][1]['doctorOfDate']=2013-10-03
test['doctorDate'][1]['orderingCount']=8
この配列の定義は次のとおりです:
test=array('doctorDate'=> array(0=>array('doctorDate'=>'2013-10-02', 'orderingCount'=>12), 1=>array('doctorDate'=>'2013-10-03', 'orderingCount'=>8) ) )
私 この配列のデータを次のように表示したいだけです:
2013-10-02 12
2013-10-02 8
この配列のデータを次のように表示したいだけです:
2013-10- 02 12
2013-10- 02 8
りー
りー