foreach

(PHP 4, PHP 5, PHP 7)

foreach �﷨�ṹ�ṩ�˱�������ļ򵥷�ʽ��foreach ���ܹ�Ӧ��������Ͷ����������Ӧ���������������͵ı���������δ��ʼ���ı���������������Ϣ���������﷨��

foreach (array_expression as $value)
    statement
foreach (array_expression as $key => $value)
    statement

��һ�ָ�ʽ���������� array_expression ���顣ÿ��ѭ���У���ǰ��Ԫ��ֵ������ $value ���������ڲ���ָ����ǰ��һ���������һ��ѭ���н���õ���һ����Ԫ����

�ڶ��ָ�ʽ��ͬ�����£�ֻ���˵�ǰ��Ԫ�ļ���Ҳ����ÿ��ѭ���б��������� $key��

���ܹ��Զ�������������

Note:

�� foreach ��ʼִ��ʱ�������ڲ���ָ����Զ�ָ���һ����Ԫ������ζ�Ų���Ҫ�� foreach ѭ��֮ǰ���� reset()��

���� foreach �����ڲ�����ָ�룬��ѭ�����޸���ֵ�����ܵ����������Ϊ��

���Ժ����׵�ͨ���� $value ֮ǰ���� & ���޸������Ԫ�ء��˷�������������ֵ�����ǿ���һ��ֵ��

<?php
$arr 
= array(1234);
foreach (
$arr as &$value) {
    
$value $value 2;
}
// $arr is now array(2, 4, 6, 8)
unset($value); // ���ȡ��������
?>

$value �����ý��ڱ�������������Ա�����ʱ�ſ��ã������Ǹ������������´������޷����У�

<?php
foreach (array(1234) as &$value) {
    
$value $value 2;
}

?>

Warning

�������һ��Ԫ�ص� $value ������ foreach ѭ��֮���Իᱣ��������ʹ�� unset() ���������١�

Note:

foreach ��֧����"@"�����ƴ�����Ϣ��������

�û�����ע�⵽�����µĴ��빦����ȫ��ͬ��

<?php
$arr 
= array("one""two""three");
reset($arr);
while (list(, 
$value) = each($arr)) {
    echo 
"Value: $value<br>\n";
}

foreach (
$arr as $value) {
    echo 
"Value: $value<br />\n";
}
?>

���´��빦��Ҳ��ȫ��ͬ��

<?php
$arr 
= array("one""two""three");
reset($arr);
while (list(
$key$value) = each($arr)) {
    echo 
"Key: $key; Value: $value<br />\n";
}

foreach (
$arr as $key => $value) {
    echo 
"Key: $key; Value: $value<br />\n";
}
?>

ʾ���÷��ĸ������ӣ�

<?php
/* foreach example 1: value only */

$a = array(12317);

foreach (
$a as $v) {
   echo 
"Current value of \$a: $v.\n";
}

/* foreach example 2: value (with its manual access notation printed for illustration) */

$a = array(12317);

$i 0/* for illustrative purposes only */

foreach ($a as $v) {
    echo 
"\$a[$i] => $v.\n";
    
$i++;
}

/* foreach example 3: key and value */

$a = array(
    
"one" => 1,
    
"two" => 2,
    
"three" => 3,
    
"seventeen" => 17
);

foreach (
$a as $k => $v) {
    echo 
"\$a[$k] => $v.\n";
}

/* foreach example 4: multi-dimensional arrays */
$a = array();
$a[0][0] = "a";
$a[0][1] = "b";
$a[1][0] = "y";
$a[1][1] = "z";

foreach (
$a as $v1) {
    foreach (
$v1 as $v2) {
        echo 
"$v2\n";
    }
}

/* foreach example 5: dynamic arrays */

foreach (array(12345) as $v) {
    echo 
"$v\n";
}
?>

�� list() ��Ƕ�׵�������

(PHP 5 >= 5.5.0, PHP 7)

PHP 5.5 �����˱���һ�����������Ĺ��ܲ��Ұ�Ƕ�׵���������ѭ�������У�ֻ�轫 list() ��Ϊֵ�ṩ��

���磺

<?php
$array 
= [
    [
12],
    [
34],
];

foreach (
$array as list($a$b)) {
    
// $a contains the first element of the nested array,
    // and $b contains the second element.
    
echo "A: $a; B: $b\n";
}
?>

�������̻������

A: 1; B: 2
A: 3; B: 4

list() �еĵ�Ԫ��������Ƕ������ģ���ʱ����������鵥Ԫ�������ԣ�

<?php
$array 
= [
    [
12],
    [
34],
];

foreach (
$array as list($a)) {
    
// Note that there is no $b here.
    
echo "$a\n";
}
?>

�������̻������

1
3

��� list() ���г��ĵ�Ԫ����Ƕ��������ᷢ��һ����Ϣ����Ĵ�����Ϣ��

<?php
$array 
= [
    [
12],
    [
34],
];

foreach (
$array as list($a$b$c)) {
    echo 
"A: $a; B: $b; C: $c\n";
}
?>

�������̻������


Notice: Undefined offset: 2 in example.php on line 7
A: 1; B: 2; C: 

Notice: Undefined offset: 2 in example.php on line 7
A: 3; B: 4; C: