Quantcast
Channel: 神戸ホームページ制作会社ユニファースの代表ブログ
Viewing all articles
Browse latest Browse all 221

【EC CUBE】Smarty で assignされている変数をテンプレート側のPHPで読む方法

$
0
0

例えば、smarty で assign されている

{$arrProduct.product_code_min}

という変数を、php の記述内で呼び出す方法です。

<!--{php}-->
$arrProduct = $this->get_template_vars('arrProduct');
$prodid = $arrProduct['product_code_min'];
<!--{/php}-->

検索しても中々見つからなかったので、メモとして残しておきます。


Viewing all articles
Browse latest Browse all 221

Trending Articles