Home > Article > Backend Development > ThinkPHP template determines the usage of output Empty tag
This article mainly introduces the usage of the Empty tag in ThinkPHP template judgment output. Friends who need it can refer to
The empty tag of ThinkPHP template is used to judge whether the template variable is empty.
ThinkPHP template empty tag is used to determine whether the template variable is empty. Its function is equivalent to the empty() function behavior in PHP. The format of the empty tag is as follows:
<empty name="变量名">要输出的内容</empty>
The specific usage is as shown in the following example:
<empty name="username">username 为空值</empty
This example is equivalent to:
<?php if(empty($username)){ echo 'username 为空值'; } ?>
If you judge a non-empty value, you can use the notempty tag, as follows Shown:
<notempty name="username">username 不为空</notempty>
The two tags can be combined to write:
<empty name="username">username 为空值<else/>username 不为空</empty>
##Related recommendations:
ThinkPHP Template variable output, custom functions and judgment statement usage
The above is the detailed content of ThinkPHP template determines the usage of output Empty tag. For more information, please follow other related articles on the PHP Chinese website!