array_values 傳回數組中所有的值
基本語法:
array array_values ( array $input )
array_values() 傳回 input 數組中所有的值並給其建立數字索引。
參數介紹:
回傳值:
傳回含所有值的索引陣列。
注意:
傳回的新陣列的所有將使用數字索引,從0開始。
實例:
<?php $array = array( "php" => "php code", "html" => "html code", "css" => "css code", "js" => "js code", ); print_r(array_values($array)); ?>
運作結果:
Array ( [0] => php code [1] => html code [2] => css code [3] =