📅  最后修改于: 2022-03-11 14:54:41.306000             🧑  作者: Mango
//Simple PHP array.
$array = array(1, 2, 3);
//Loop through the elements.
foreach($array as $value){
//Print the element out.
echo $value, '
';
}