while() 通常和 list(),each()配合使用。
$colors= array('red','blue','green','yellow'); while(list($key,$val)= each($colors)) {
echo "$key=> $val<br />";
}
2022-05-08 23:36:21
while() 通常和 list(),each()配合使用。
$colors= array('red','blue','green','yellow'); while(list($key,$val)= each($colors)) {
echo "$key=> $val<br />";
}