Blogger Information
Blog 16
fans 0
comment 0
visits 6130
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0811实例演示5种PHP数组函数
glen
Original
381 people have browsed it
实例演示5种PHP数组函数

代码演示

  1. <?php
  2. namespace _0811;
  3. echo '<hr>-------------------1.数组函数:array_diff-----------------<br>';
  4. $a =['小红', '小黄', '小蓝', '小绿'];
  5. $b =['小青', '小红', '小橙', '小紫'];
  6. print_r(array_diff($a, $b));
  7. echo '<hr>---------------------2.数组函数:array_unique--------------------</br>';
  8. print_r(array_merge($a, $b));
  9. echo'<hr>-----------------------3.数组函数:array_intersect---------------------</br>';
  10. print_r(array_intersect($a, $b));
  11. echo'<hr>--------------------4.array_combine():用一个数组的值作为其键名,另一个数组的值作为其值-------------------------</br>';
  12. //4.array_combine(): 创建一个数组,用一个数组的值作为其键名,另一个数组的值作为其值
  13. $a = ['id', 'name', 'email'];
  14. $b = [1, '赵大', 'zhaoda@qq.com'];
  15. printf('数组1: <pre>%s</pre><hr>', print_r($a, true));
  16. printf('数组2: <pre>%s</pre><hr>', print_r($b, true));
  17. $result = array_combine($a, $b);
  18. printf('用一个数组的值作为其键名,另一个数组的值作为其值: <pre>%s</pre>', print_r($result, true));
  19. echo '<hr>-------------------5.array_change_key_case()将 array 数组中的所有键名改为全小写或大写。本函数不改变数字索引。
  20. array:需要操作的数组。--------------------------------------</br>';
  21. /* 1.array_change_key_case()
  22. array_change_key_case(array $array, int $case = CASE_LOWER) 将 array 数组中的所有键名改为全小写或大写。本函数不改变数字索引。
  23. array:需要操作的数组。
  24. case:可以在这里用两个常量,CASE_UPPER 或 CASE_LOWER(默认值)。 */
  25. $input_array = array("FirSt" => 1, "SecOnd" => 4);
  26. $stack = array_change_key_case($input_array, CASE_UPPER);
  27. printf('<pre>%s</pre>', print_r($stack, true));

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments