The use of foreach is often used in PHP, and if you use foreach, you must use an array. So in this article, we talk about the array, and we're talking about foreach.
foreach has two kinds of syntax:
First: Iterate over the given array statement
The foreach basic syntax is as follows:
FOREACH ($array _variable as $value)
{
[Code to execute]
}
Or
FOREACH ($array _variable as $key = $value)
{
[Code to execute]
}
In both cases, multiple [code execution] will be executed to be equal to the
Smarty foreach Detailed description
For the knowledge of Smarty foreach, here is a detailed explanation of its function and usage.
Smarty {foreach} is used to iterate through an associative array like iterating over a numeric index array, unlike
In PHP, use foreach () to traverse a simple example of a two-dimensional array. PHP uses foreach () to traverse a simple example of a two-dimensional array. The first type of foreach two-dimensional array wants to traverse the whole two-dimensional
The following small series will bring you a PHP array traversal foreach syntax structure and example. I think this is quite good. now I will share it with you and give you a reference. Let's take a look at foreach ()
The PHP foreach () syntax
{Foreach}, {foreachelse}
{Foreach} is used to cyclically access an associated array like a digital index array. It is different from the {Section} That can only access the numeric index array, the syntax of {foreach} is much simpler than that of
The foreach basic syntax is as follows:
FOREACH ($array _variable as $value)
{
[Code to execute]
}
Or
FOREACH ($array _variable as $key => $value)
{
[Code to execute]
}
In both cases, multiple [code executions] will be executed equal to the number
Objective:The foreach structure is introduced in PhP4, which is an easy way to iterate through an array. foreach makes it easier to get key-value pairs than a traditional for-loop. Before PhP5, foreach can only be used in arrays, and after php5, it
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.