“PHP -Variable außerhalb von Foreach” Code-Antworten

PHP -Variable außerhalb von Foreach

$categorySize = array();

<?php  $categories = Mage::getModel('catalog/category')->getCollection()->addAttributeToSelect('*'); 
         foreach ($categories as $category): 
         $categorySize = $category->getSize_chart(); 
         print_r ($categorySize); 
         endforeach;
    ?>

print_r($categorySize) //Now you can get it outside the loop 
Borma

PHP -Variable außerhalb von Foreach

$pages = get_pages();
$pagee = array();
foreach ($pages as $page) {
  $pagee[] = $page->post_title;
}
echo implode(",",$pagee);
Borma

Ähnliche Antworten wie “PHP -Variable außerhalb von Foreach”

Fragen ähnlich wie “PHP -Variable außerhalb von Foreach”

Weitere verwandte Antworten zu “PHP -Variable außerhalb von Foreach” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen