Wie entferne ich einen Array-Schlüssel in PHP?
In PHP können Sie die Funktion „array_values()“ verwenden, um den Array-Schlüssel zu entfernen. Die Funktion dieser Funktion besteht darin, alle Werte im Array abzurufen ($array)“ und sein Parameter „$array“ stellt das Array dar, aus dem der Schlüssel entfernt werden soll, und der Rückgabewert ist ein Indexarray, das alle Werte enthält.
Empfohlenes Video-Tutorial: „PHP-Programmierung vom Einstieg bis zum Master (Lernroute) “
Einfaches Beispiel
<?php $array = array("size" => "XL", "color" => "gold"); print_r(array_values($array)); ?>
Die obige Routine gibt Folgendes aus:
Array ( [0] => XL [1] => gold )
Verwendungsbeispiel
<?php $a = array( 3 => 11, 1 => 22, 2 => 33, ); $a[0] = 44; print_r( array_values( $a )); ==> Array( [0] => 11 [1] => 22 [2] => 33 [3] => 44 ) ?>
<?php /** * Get all values from specific key in a multidimensional array * * @param $key string * @param $arr array * @return null|string|array */ function array_value_recursive($key, array $arr){ $val = array(); array_walk_recursive($arr, function($v, $k) use($key, &$val){ if($k == $key) array_push($val, $v); }); return count($val) > 1 ? $val : array_pop($val); } $arr = array( 'foo' => 'foo', 'bar' => array( 'baz' => 'baz', 'candy' => 'candy', 'vegetable' => array( 'carrot' => 'carrot', ) ), 'vegetable' => array( 'carrot' => 'carrot2', ), 'fruits' => 'fruits', ); var_dump(array_value_recursive('carrot', $arr)); // array(2) { [0]=> string(6) "carrot" [1]=> string(7) "carrot2" } var_dump(array_value_recursive('apple', $arr)); // null var_dump(array_value_recursive('baz', $arr)); // string(3) "baz" var_dump(array_value_recursive('candy', $arr)); // string(5) "candy" var_dump(array_value_recursive('pear', $arr)); // null ?>
Empfohlenes Tutorial :《PHP-Tutorial》
Das obige ist der detaillierte Inhalt vonWie entferne ich einen Array-Schlüssel in PHP?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!