Home  >  Article  >  CMS Tutorial  >  How to write judgment in phpcms v9 template

How to write judgment in phpcms v9 template

angryTom
angryTomOriginal
2020-02-15 15:25:512492browse

How to write judgment in phpcms v9 template

How to write judgment in phpcms v9 template

The if statement is used to judge in phpcms v9 template. The specific usage examples are as follows:

{if $catid==10}
    1
{elseif $catid==11}
    2
{else}
    3
{/if}

If it is in the loop body {loop $data $r}, use:

{if $r[catid]==10}
    1
{elseif $r[catid]==11}
    2
{else}
    3
{/if}

Related recommendations: phpcms tutorial

The above is the detailed content of How to write judgment in phpcms v9 template. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn