Blogger Information
Blog 30
fans 1
comment 0
visits 23246
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
array_values()在php中返回数组的操作实例
P粉896289085
Original
395 people have browsed it

array_values()在php中返回数组的操作实例
更新时间:2021年02月18日 16:55:52 作者:小妮浅浅
在本篇文章里小编给大家分享的是一篇关于array_values()在php中返回数组的操作实例内容,有兴趣的朋友们可以学习参考下。

在对数组的一些操作上,有些人对于键值方面不太理解。为了方便大家能够更好地对一些值进行返回,本篇带来了array_values() 函数进行介绍,使用后能直接返回数组。下面我们就array_values()函数的定义、语法、参数、返回值、实例进行介绍,一起都来看看返回数组的方法吧。

1、定义
array_values() 函数返回一个包含给定数组中所有键值的数组,但不保留键名。

2、语法

array_values(array)

3、参数
array

4、返回值
返回包含数组中所有的值的数组。

5、实例

  1. <?php
  2. $lu='this.txt';
  3. $js= file_get_contents($lu);
  4. $okjson=json_decode($js,true);
  5. var_dump($okjson);
  6. /*array(1) { ["this"]=> array(3) {
  7. [0]=> array(2) { ["name"]=> string(1) "a" ["url"]=> string(2) "aa" }
  8. [1]=> array(2) { ["name"]=> string(1) "b" ["url"]=> string(2) "bb" }
  9. [2]=> array(2) { ["name"]=> string(1) "c" ["url"]=> string(2) "cc" } } }
  10. */
  11. unset($okjson["this"][1]);
  12. var_dump($okjson);
  13. /*
  14. array(1) { ["this"]=> array(2) {
  15. [0]=> array(2) { ["name"]=> string(1) "a" ["url"]=> string(2) "aa" }
  16. [2]=> array(2) { ["name"]=> string(1) "c" ["url"]=> string(2) "cc" } } }
  17. */
  18. $okjson['this'] = array_values($okjson['this']);
  19. var_dump($okjson);
  20. /*
  21. array(1) { ["this"]=> array(2) {
  22. [0]=> array(2) { ["name"]=> string(1) "a" ["url"]=> string(2) "aa" }
  23. [1]=> array(2) { ["name"]=> string(1) "c" ["url"]=> string(2) "cc" } } }
  24. */
  25. ?>

PHP array_values() 函数实例扩展:

实例
返回数组的所有值(非键名):

  1. <?php
  2. $a=array("Name"=>"Bill","Age"=>"60","Country"=>"USA");
  3. print_r(array_values($a));
  4. ?>

到此这篇关于array_values()在php中返回数组的操作实例的文章就介绍到这了。

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
Author's latest blog post