I am learning PHP script online but not quite understood, wonder if someone could shed me some light on this.
The function below is part of a script to trim email list from a file into domain list and removes duplicates.
/* define a function that can accept a list of email addresses */
function getUniqueDomains($list) {
/* iterate over the list, split addresses and add domain part to another array */
$domains = array();
foreach ($list as $l) {
$arr = explode("@", $l);
$domains[] = trim($arr[1]);
}
// remove duplicates and return
return array_unique($domains);
}
I don't understand this part "$domains[] = trim($arr[1]);" what does it mean? specially the "$arr[1]". What does "[1]" mean in this context? How come variable $arr becomes array variable?
Thanks.
hc.

explode– Madbreaks Jan 28 at 22:07