xgnic 发表于 2018-2-11 12:01:49


            array_values 返回数组中所有的值
基本语法:
array array_values ( array $input )
array_values() 返回 input 数组中所有的值并给其建立数字索引。
参数介绍:


   
      参数
      描述
   
   
      input
      必需。规定数组。
   


返回值:
返回含所有值的索引数组。
注意:
返回的新数组的所有将使用数字索引,从0开始。
实例:
"php code",
"html" => "html code",
"css" => "css code",
"js" => "js code",
);
print_r(array_values($array));
?>
页: [1]
查看完整版本: php array_values 返回数组的值实例详解