You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
318 B

<?php
$array=['name'=>'kwj','age'=>'30','native'=>'dongguan'];
//遍历数组值
foreach($array as $value){
echo $value;
echo '<br>';
}
echo '------<br>';
//遍历键名和键值
foreach($array as $key=>$value){
echo "$key : $value";
echo '<br>';
}
?>