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] => js code )
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!