• 获取php数组的键名和值


    要返回数组中的所有值,可以使用array_values()函数。该函数将忽略原始的键名,使用顺序的数字对数组重新索引。要返回一个数组的所有键,可以使用array_keys()函数。该函数返回一个包含数字或字符串的键名数组。

    代码:

         

    1 array_keys={
    2 
    3      "200V", 
    4               "output" => "1.5V", 
    5                "battery"=>array("a" => "Cell")
    6              );
     1   print_r(array_keys ($array));                        //输出数组的键
     2         /* 输出结果
     3         Array
     4         (
     5                 [0] => input
     6                 [1] => output
     7                 [2] => battery
     8         )
     9         */
    10 
    11 print_r(array_values ($array));                        //输出数组的值
    12         /* 输出结果
    13         Array (
    14                 [0] => 200V
    15                 [1] => 1.5V
    16                 [2] => Array (
    17                         [a] => Cell
    18                 )
    19         )
    20         */
  • 相关阅读:
    hdu 3496
    poj 2374
    zoj 3399
    poj 1321
    sgu 365
    hdu 3555
    poj 3345
    poj 2355
    Android重命名文件
    在workflow中传值的sample
  • 原文地址:https://www.cnblogs.com/fanchangfa/p/2446977.html
Copyright © 2020-2023  润新知