質問:'A2'
,'A7'
などで始まる値を確認するにはどうすればよいですか。値が 'A2'の場合は、'$aWoning.Woning_Bouwnr'
が'A2'
で始まるすべての行のみを表示しますか?私はSmartyを初めて知ったので、今何をすべきかは本当に分かりません。値が 'A2'で始まるかどうかを確認するにはどうすればいいですか?
コード/ 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>
を使用します。このよう
– Borgtex