2010-01-25 157 views
1

我想要從CakePHP中的數組中獲取一些數據,該數組包含來自find()輸出和其他數據輸出部分的所有數據。從CakePHP中的數組中檢索值

我試圖訪問的數據是公司內部的名稱字段,我使用的代碼是echo $quote['Company']['name'],但它返回,錯誤表示索引未定義。 echo $quote['Status']['name']工程數組的精細

內容的代碼看起來像這樣

Array ( 
[Quote] => Array ([id] => 3 [name] => Eighties Yeh that aint right [revision] => 1 [status_id] => 1 [contact_id] => 1 [totalcost] => 500 [created] => 2010-01-20 13:26:36) [Status] => Array ([id] => 1 [name] => Open 
[Quote] => Array ([id] => 3 [name] => Eighties Yeh that aint right [revision] => 1 [status_id] => 1 [contact_id] => 1 [totalcost] => 500 [created] => 2010-01-20 13:26:36 
[0] => Array ([id] => 3 [name] => Eighties Yeh that aint right [revision] => 1 [status_id] => 1 [contact_id] => 1 [totalcost] => 500 [created] => 2010-01-20 13:26:36) 

[1] => Array ([id] => 4 [name] => Test [revision] => 12 [status_id] => 1 [contact_id] => 1 [totalcost] => 23 [created] => 2010-01-20 19:05:36))) 
[Contact] => Array ([id] => 1 [company_id] => 1 [name] => Kieran Hutchinson [email] => [email protected] 
[Company] => Array ([id] => 1 [name] => Red Meets Blue) 
[Quote] => Array ([id] => 2 [name] => Test Quote 2 [revision] => 1 [status_id] => 0 [contact_id] => 1 [totalcost] => 300 [created] => 2010-01-17 10:30:31 
[0] => Array ([id] => 2 [name] => Test Quote 2 [revision] => 1 [status_id] => 0 [contact_id] => 1 [totalcost] => 300 [created] => 2010-01-17 10:30:31) 
[1] => Array ([id] => 5 [name] => test 4 [revision] => 1 [status_id] => 3 [contact_id] => 1 [totalcost] => 233 [created] => 2010-01-20 19:05:55) 
[2] => Array ([id] => 3 [name] => Eighties Yeh that aint right [revision] => 1 [status_id] => 1 [contact_id] => 1 [totalcost] => 500 [created] => 2010-01-20 13:26:36) [3] => Array ([id] => 4 [name] => Test [revision] => 12 [status_id] => 1 [contact_id] => 1 [totalcost] => 23 [created] => 2010-01-20 19:05:36) 
[4] => Array ([id] => 6 [name] => Test Lost Quote [revision] => 1 [status_id] => 4 [contact_id] => 1 [totalcost] => 123 [created] => 2010-01-21 16:00:43) 
[5] => Array ([id] => 7 [name] => Test Pending QUote [revision] => 1 [status_id] => 2 [contact_id] => 1 [totalcost] => 321 [created] => 2010-01-21 16:00:57))) [QuoteItem] => Array ()) 

回答

1

從你的陣列,它似乎需要通過$quote['Contact']['Company']['name']

+0

完全正確....傾斜beleive我訪問它錯過了 - 謝謝 – kwhohasamullet 2010-01-25 06:40:58