Zend Framework の新しい記事に多数のサムネイル画像を追加しているため、この配列を印刷するためのコーディング スタイルがわかりません。
MongoDB の私の配列は次のようになります。
"thmbs": [
{
"src": "examp.com/img/product1.jpg",
"caption": "Top View"
},
{
"src": "examp.com/img/product2.jpg",
"caption": "Side View"
},
]
まず、配列に何かが含まれているかどうかを確認してから、代替テキストの画像とキャプションを印刷します。これは正しい方向ですか??
<?php if ($this->thmbs) {
foreach($this->thmbs->src as $val){?>
<img id="lead-image" src="<?= $this->thmbs->src ?>" alt="<?= $this->thmbs->caption?>"/>
<?php }} ?>