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.

16 lines
318 B

  1. <?php
  2. $array=['name'=>'kwj','age'=>'30','native'=>'dongguan'];
  3. //遍历数组值
  4. foreach($array as $value){
  5. echo $value;
  6. echo '<br>';
  7. }
  8. echo '------<br>';
  9. //遍历键名和键值
  10. foreach($array as $key=>$value){
  11. echo "$key : $value";
  12. echo '<br>';
  13. }
  14. ?>