Home > CMS Tutorial > PHPCMS > body text

How does phpcms determine whether there is a sub-column?

Guanhui
Release: 2020-07-20 15:45:04
Original
3057 people have browsed it

How does phpcms determine whether there is a sub-column?

#How does phpcms determine whether there is a sub-column?

1. Directly use the PHP syntax "if" to determine the "child" of the column;

if($r[child]){
echo "有子栏目";
}else{
echo "无子栏目";
}
Copy after login

2. Use the "if" tag in the template tag to directly determine the "child" of the column. ;

{if $r[child]}
有子栏目
{else}
无子栏目
{/if}
Copy after login

3. Use the "if" tag in the template tag to determine whether the "child" of the column is equal to 1.

{if $child==1}
有子栏目
{else}
无子栏目
{/if}
Copy after login

Recommended tutorials: "PHP" "PHPCMS Tutorial"

The above is the detailed content of How does phpcms determine whether there is a sub-column?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
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!