问题:
如何检查值是否以'A2'
,'A7'
开头,依此类推。如果价值是' A2'仅显示'$aWoning.Woning_Bouwnr'
以'A2'
开头的所有行?因为我是Smarty的新手,所以我现在还不知道该怎么做。
代码/ Html:
<table id="bouwnummers-table" class="table table-hover table-striped">
<thead>
<tr>
<th>Bouwnummer</th>
<th>Woningtype</th>
<th>Woonopp.</th>
<th>Prijs vanaf</th>
<th>Status</th>
</tr>
</thead>
<tbody>
{foreach $aWoningen as $aWoning}
<tr>
<td>{$aWoning.Woning_Bouwnr}</td>
<td>{$aWoning.Projectwoning_Titel}</td>
<td>{$aWoning.Woning_WoonOpp} m²</td>
{*<td>{$aWoning.Woning_Adres|escape}</td>*}
<td>
{if $aWoning.Woning_Prijs!=0}
{if $aWoning.Verkocht!=1}
{$aWoning.Woning_Prijs|escape:"html"|lv_hele_euro}
{else}
Verkocht
{/if}
{else}
n.n.b.
{/if}
</td>
<td class="{if $aWoning.Verkocht==1}status-verkocht{elseif $aWoning.Optie==1}status-optie{else}status-beschikbaar{/if}">
<i class="fa fa-square"></i>
{if $aWoning.Verkocht==1}
Verkocht
{elseif $aWoning.Optie==1}
In Optie
{else}
Beschikbaar
{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
答案 0 :(得分:0)
Smarty可以使用&#34; normal&#34; PHP-功能。
像这样:
{if $yourVarToCheck|strstr:"A2"}
//your code here
{/if}
答案 1 :(得分:0)
在php中,使用strpos
{if $yourVarToCheck|strpos:"A2"!== false}