我的数组看起来像这样:
$arValues = array( 345 => "jhdrfr", 534 => "jhdrffr", 673 => "jhrffr", 234 => "jfrhfr" );
如何删除数组的第一个元素,但保留数字键?由于array_shift
将我的整数键值更改为0, 1, 2, ...
。
我尝试使用unset( $arValues[ $first ] ); reset( $arValues );
继续使用第二个元素(现在是第一个元素),但它返回false
。
我怎样才能做到这一点?
答案 0 :(得分:15)
reset( $a );
unset( $a[ key($a)]);
更有用的版本:
// rewinds array's internal pointer to the first element
// and returns the value of the first array element.
$value = reset( $a );
// returns the index element of the current array position
$key = key( $a );
unset( $a[ $key ]);
功能:
// returns value
function array_shift_assoc( &$arr ){
$val = reset( $arr );
unset( $arr[ key( $arr ) ] );
return $val;
}
// returns [ key, value ]
function array_shift_assoc_kv( &$arr ){
$val = reset( $arr );
$key = key( $arr );
$ret = array( $key => $val );
unset( $arr[ $key ] );
return $ret;
}
答案 1 :(得分:7)
// 1 is the index of the first object to get
// NULL to get everything until the end
// true to preserve keys
$arValues = array_slice($arValues, 1, NULL, true);
答案 2 :(得分:1)
function array_shift_associative(&$arr){
reset($arr);
$return = array(key($arr)=>current($arr));
unset($arr[key($arr)]);
return $return;
}
此函数使用biziclop方法但返回key=>value
对。
答案 3 :(得分:0)
这对我来说很好......
$array = array('1','2','3','4');
reset($array);
$key = key($array);
$value = $array[$key];
unset($array[$key]);
var_dump($key, $value, $array, current($array));
输出:
int(0)
string(1) "1"
array(3) { [1]=> string(1) "2" [2]=> string(1) "3" [3]=> string(1) "4" }
string(1) "2"