1. 程式人生 > >thinkphp if和eq的區別

thinkphp if和eq的區別

ext _id one letter span per gpo uppercase for

在TP模板語言中。if和eq都可以用於變量的比較。總結以下幾點:

1.兩個變量的比較:

<if condition=”$item.group_id eq $one.group_id”> <eq name=”item.group_id” value=”$one.group_id”>

前者的IF是判斷失敗的,用後者的<neq>(或<eq>)則OK。需要註意:name那裏是不用加$變量符號的,而value那裏要加$變量符號。

if判斷變量的方法:

技術分享圖片

2.還有值為空(NULL)的時候:
<if condition=”name neq ‘NULL’”>just a test</if>
<neq name=”name” velue=”">just a test</neq>

前者的IF是判斷失敗的,用後者的<neq>(或<eq>)則可以識別null為”"

3.多維數組且下標為0的時候:

<if condition=”name.0 neq ‘test’”>just a test</if> <eq name=”name.0″ velue=”test”>just a test</eq> 前者用IF是根本不能通過編譯的,用後面的eq就可以

thinkphp if和eq的區別