Home >CMS Tutorial >PHPCMS >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!