Home> PHP Framework> ThinkPHP> body text

How to implement non-empty judgment in ThinkPHP6 template

藏色散人
Release: 2020-11-17 15:24:05
forward
2396 people have browsed it

The following tutorial column ofthinkphp frameworkwill introduce to you how to implement non-empty judgment in ThinkPHP6 template. I hope it will be helpful to friends in need!

How to implement non-empty judgment in ThinkPHP6 template

ThinkPHP6 template is not empty, you can use the EMPTY/NOTEMPTY tag to judge, the main user template data output judgment.

EMPTY/NOTEMPTY tag

The empty tag is used to determine whether a variable is empty. Usage:

{empty name="name"} name为空值 {/empty}
Copy after login

If it is judged that there is no assignment, you can use :

{notempty name="name"} name不为空 {/notempty}
Copy after login

The above two tags can be merged into:

{empty name="name"} name为空 {else /} name不为空 {/empty}
Copy after login

The name attribute can use system variables directly, for example:

{empty name="Think.get.name"} $_GET['name']为空值 {/empty}
Copy after login

The above is the detailed content of How to implement non-empty judgment in ThinkPHP6 template. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:tpxhm
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!