php loop into array code example
Example 1: array push foreach php
$items = array();
foreach($group_membership as $username) {
$items[] = $username;
}
print_r($items);
Example 2: foreach loop array php
foreach (array as $value){
//code to be executed;
print("value : $value");
}
foreach (array as $key => $value){
//code to be executed;
print("key[$key] => $value");
}
Example 3: loop through php array
foreach (array_expression as $value)
statement
foreach (array_expression as $key => $value)
statement