データベースから次の複雑な配列を取得しています。各反復 (ループ) で以下のような個別のレコードが必要です。
subscribed_store -> Name
subscribed_companyLogo -> logo image
subscribed_merchant -> Company Name
以下をどのように単純化できますか。
/********************** First Iteration *******************/
Array
(
[subscribed_store] => Array
(
[0] => stdClass Object
(
[id] => 55
[name] => test
)
)
[subscribed_companyLogo] => Array
(
[0] => http://test.com/images/logo.png
)
[subscribed_merchant] => Array
(
[0] => stdClass Object
(
[id] => 9
[company_name] => Google
[company_url] => http://www.google.com
[first_name] => David
)
)
)
どうもありがとう :)