我有一個多維數組,它完全打印出我想要的數據,但是,我已經陷入了搞砸了如何將它構造到每個循環中尋找。請注意0:$ handle是客戶端在後端輸入的字段。多維數組 - foreach在一個foreach內
<?php
$gp = Mage::getStoreConfig('social_code/social_group/google_field');
$ld = Mage::getStoreConfig('social_code/social_group/linkedin_field');
$tw = Mage::getStoreConfig('social_code/social_group/twitter_field');
$fb = Mage::getStoreConfig('social_code/social_group/facebook_field');
$social_array = array(
"facebook" => array(
'class' => "facebook",
'url' => 'https://www.facebook.com/',
'handle' => $fb
),
"twitter" => array(
'class' => "twitter",
'url' => 'https://www.twitter.com/',
'handle' => $tw
),
"linked-in" => array(
'class' => "linked-in",
'url' => 'http://www.linkedin.com/company/',
'handle' => $ld
),
"google-plus" => array(
'class' => "google-plus",
'url' => 'https://plus.google.com/',
'handle' => $gp
)
);
?>
現在我想吐出這個作爲一個無序列表,所以我有下面,但它仍然不適合我。
<ul>
<?php foreach ($social_array as $name => $group) :?>
<?php foreach ($group as $class => $url) :?>
<li><a href="<?php echo ("$url"); ?>" class="<?php echo ("$class;") ?>"><?php echo ("$group"); ?></a></li>
<?php endforeach; ?>
<?php endforeach; ?>
</ul>
我想它,這樣它遍歷所有的社會陣列和普林斯與此類似
<li><a href="<?php echo ($url);?><?php echo ($handle);?>" class="<?php echo ($class); ?>"><?php echo $name; ?></a></li>
或者這樣理解更好的東西
<li><a href="http://www.facebook.com/handle" class="facebook">Facebook</a></li>
而且,如果我做這對於我自己來說很複雜,請讓我知道。
這看起來像它可以派上用場,我會試試看。謝謝。 – iamgraeme