访问 smarty 变量的名称
Accessing the name of a smarty variables
你好,我需要一些基本问题的帮助。这是我的代码:
{foreach $sArticle.attributes.core->toArray() as $attribute}
<tr class="product--properties-row">
<td class="product--properties-label is--bold">{$sArticle.attributes.name}{$sArticle.attributesName}</td>
<td class="product--properties-label is--bold">{$attribute}</td>
</tr>
{/foreach}
1.Question: 如何输入属性名称?我的意思是数据库中属性的列名?
2.Question:我只想在名称为“artikelattr_”的列中使用 foreach 循环,知道如何做到这一点吗?
谢谢
我在这里调整了我的答案:
如何获取属性的名称。
要只考虑以特定字符串开头的某些属性,只需在循环中添加一个if
:
{foreach $sArticle.attributes.core->toArray() as $attributeName => $attribute}
{if $attributeName|strpos:"artikelattr_" === 0}
{$attributeName|var_dump}
{$attribute|var_dump}
{/if}
{/foreach}
您可以简单地使用 Smarty 中几乎所有 PHP 功能。
你好,我需要一些基本问题的帮助。这是我的代码:
{foreach $sArticle.attributes.core->toArray() as $attribute}
<tr class="product--properties-row">
<td class="product--properties-label is--bold">{$sArticle.attributes.name}{$sArticle.attributesName}</td>
<td class="product--properties-label is--bold">{$attribute}</td>
</tr>
{/foreach}
1.Question: 如何输入属性名称?我的意思是数据库中属性的列名? 2.Question:我只想在名称为“artikelattr_”的列中使用 foreach 循环,知道如何做到这一点吗?
谢谢
我在这里调整了我的答案:
要只考虑以特定字符串开头的某些属性,只需在循环中添加一个if
:
{foreach $sArticle.attributes.core->toArray() as $attributeName => $attribute}
{if $attributeName|strpos:"artikelattr_" === 0}
{$attributeName|var_dump}
{$attribute|var_dump}
{/if}
{/foreach}
您可以简单地使用 Smarty 中几乎所有 PHP 功能。