Home > CMS Tutorial > PHPCMS > body text

How to use loop tag in phpcms

王林
Release: 2020-02-08 10:43:00
Original
2834 people have browsed it

How to use loop tag in phpcms

In phpcms, loops are used a lot, generally in two forms.

The form is as follows:

Form one:

{loop $data $a}
{$a}
{/loop}
Copy after login
Copy after login

Form two:

{loop $data $a $b}
{$a}---{$b}
{/loop}
Copy after login

The difference is as follows:

First of all, $data is an array. In the first form, the $data array is like this, "aa", "bb", "cc". In this form, To get the first value aa, we use this code $data[0], to get the second value we use $data[1], and so on.

Form 2, the $data array has an additional key value, which is in this form "a1=>aa", "a2=>bb", "a3=>cc", a1, a2 , a3 is called the key value of $data. If we want to take out the variable value with the key value a1, that is, aa, we can use $data[a1] to get aa. Similarly, $data[a2] also It’s just bb.

Then in PHPCMS, form 1:

In the loop, $a is $data[0], $data[1], $data[2], we directly write {$ a} can loop to get the value of $a.

Form 2:

In the loop, $a is a1, a2, a3 in the above example, and $b is aa, bb, cc in the above example.

The examples are as follows:

Example 1: There are three values ​​​​"aa", "bb", "cc" in the

$data array, then :

{loop $data $a}
{$a}
{/loop}
Copy after login
Copy after login

will output aa, bb, cc.

Example 2:

There are three key values ​​in the $data array: "a1=>aa", "a2=>bb", "a3=>cc", Then

{loop $data $a $b}
{$a}-{$b}|
{/loop}
Copy after login

will output a1-aa|a2-bb|a3-cc|.

Related tutorial recommendations: phpcms tutorial

The above is the detailed content of How to use loop tag in phpcms. 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