次のコードを試しました
<?php
foreach ($_wishlistitemCollection as $_wishlistitem):
$_product = $_wishlistitem->getProduct();
$imgpath = $this->helper('catalog/image')->init($_product, 'small_image');
$physpaths = array($imgpath);
endforeach;
?>
<?php
for ($i = 0; $i < 5; $i++) {
echo $physpaths[$i];
}
?>
エラーはありませんが、問題は array 内のすべての要素が表示されないこと$physpaths
です。
すべての要素が含まれていることを確認する方法を教えてください$physpaths
。または、間違いを犯した場所を指摘してください。