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
Array( [doctorDate] => Array ( [0] => Array ( [doctorOfDate] => 2013-10-02 [orderingCount] => 12 ) [1] => Array ( [doctorOfDate] => 2013-10-03 [orderingCount] => 8 ) ) )
<?php$test=array('doctorDate'=> array(0=>array('doctorDate'=>'2013-10-02', 'orderingCount'=>12), 1=>array('doctorDate'=>'2013-10-03', 'orderingCount'=>8) ) );foreach ($test as $arr){foreach ($arr as $value){echo $value['doctorDate'].' '.$value['orderingCount'].'<br>';}}?>
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号