PHP Smarty character comparison code _php tips

Source: Internet
Author: User
EQ equals,
NE, neq are not equal,
GT greater Than,
Lt is less than,
GTE, GE is greater than equals,
LTE, le less than equal,
Not non, mod modulo.
is [not] a div by can be divisible by a number,
is [not] even an even number,
$a is [not] even by $b i.e. ($a/$b)% 2 = 0,
are [not] odd are odd,
$a is isn't odd by $b ($a/$b)% 2!= 0 Example:
Equal/not Equal/greater than/less than/less than or equal/great than or equal/not to mention the following
The IF statement in Smarty is as flexible and easy to use as the IF statement in PHP, and adds several features to fit the template engine. If must appear in pairs of/if. You can use the else and elseif clauses. You can use the following conditions to modify words: EQ, NE, neq, GT, LT, LTE, Le, GTE, GE, is even, is odd, is not even, is not odd, not, MoD, div by, even by, odd by, = =,!=, >, <, <=, >=. You must use these modifiers with a variable or constant in an empty space.

Example 7-11. If statements
Example 7-11. If statement demo

{if $name eq "Fred"}
Welcome Sir.
{elseif $name eq "Wilma"}
Welcome Ma ' am.
{Else}
Welcome, whatever you are.
{/if}

{* An example with "or" logic *}
{if $name eq ' Fred ' or $name eq ' Wilma '}
...
{/if}

{* Same as above *}
{if $name = = "Fred" | | $name = = "Wilma"}
...
{/if}

{* The following syntax would not work, conditional qualifiers
Must be separated from surrounding elements by spaces *}
{if $name = = "Fred" | | $name = = "Wilma"}
...
{/if}


{* Parenthesis are allowed *}
{if ($amount < 0 or $amount > 1000) and $volume >= #minVolAmt #}
...
{/if}

{* You can also embed PHP function calls *}
{if count ($var) GT 0}
...
{/if}

{* Test if values are even or odd *}
{if $var is even}
...
{/if}
{if $var is odd}
...
{/if}
{If $var is not odd}
...
{/if}

{* Test if VAR is divisible by 4 *}
{if $var are div by 4}
...
{/if}

{* Test if Var is even, grouped by two. i.e.,
0=even, 1=even, 2=odd, 3=odd, 4=even, 5=even, etc. *}
{If $var is even by 2}
...
{/if}

{* 0=even, 1=even, 2=even, 3=odd, 4=odd, 5=odd, etc. *}
{If $var is even by 3}
...
{/if}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.