PHP_language

Difference between r1.5 and the current

@@ -6,11 +6,15 @@
두 가지가 있음.

일반적인것인듯
{{{
foreach (array_expression as $value) {
statement
}
}}}

이건 associative array에 해당.
{{{
foreach (전체associative_array_name as $key_즉_각각item => $value) {
statement
}
}}}



foreach

두 가지가 있음.

일반적인것인듯
foreach (array_expression as $value) {
 statement
}

이건 associative array에 해당.
foreach (전체associative_array_name as $key_즉_각각item => $value) {
 statement
}