'A' bir anahtar olduğunu bir ilişkisel dizi (some languages, like Perl, if I remember correctly, call those "hash") için "a => b" araçlarla, ve 'b', bir değer gibi kod.
Sen dokümantasyon bakmak istiyorum, en azından olabilir:
Burada, $user_list
adında bir dizi, yaşıyorsanız, ve $user
olarak, her bir hat için, almak, üzerine çizgi anahtarını yineleme, ve {karşılık gelen değeri [(2)]}.
Örneğin, bu kod:
$user_list = array(
'user1' => 'password1',
'user2' => 'password2',
);
foreach ($user_list as $user => $pass)
{
var_dump("user = $user and password = $pass");
}
Bu çıktıyı alırsınız:
string 'user = user1 and password = password1' (length=37)
string 'user = user2 and password = password2' (length=37)
"Equal or greater" is the other way arround : "greater or equals", which is written, in PHP, like this ; ">="
Same thing for most languages derivated from C : C++, JAVA, PHP, ...
As a piece of advice : if you are just starting with PHP, you should definitly spend some time (maybe couple of hours, maybe even half a day or even a whole day) going through some parts of the manual :-)
It'd help you much !