Home > Article > Backend Development > How to delete associative array elements in php
php method to delete associative array elements: first create a PHP sample file; then define a "removeArrayElement" method; then delete elements in the associative array through loop traversal.
php method to delete associative array elements:
$array1 = array("a" => "green", "red", "blue", "red"); $array2 = array("b" => "green"); $result = array_diff($array1, $array2); //这样就相当于删除$array1里的值为"green"的元素。 print_r($result); ?>
There is another method, which is more complicated than the above, But the effect is the same:
function removeArrayElement(&$ar,$val) { $tmp = array(); foreach($ar as $k => $arc) { if($arc!=$val) { $tmp[$k]=$arc; } } $ar = $tmp; unset($tmp); }
If you want to know more about programming learning, please pay attention to the php training column!
The above is the detailed content of How to delete associative array elements in php. For more information, please follow other related articles on the PHP Chinese website!