Home  >  Article  >  Backend Development  >  php delete array elements_PHP tutorial

php delete array elements_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:48:011278browse

If no callback function is provided, array_filter() will remove all entries in input whose value is FALSE.
You can use this function to delete null elements in the array.

Copy code The code is as follows:

//Delete an element in the array
function array_remove_value(&$arr, $var){
foreach ($arr as $key => $value) {
if (is_array($value)) {
array_remove_value($arr[$key], $var);
} else {
$value = trim($value);
if ($value == $var) {
unset($arr[$key]);
} else {
$arr[$key] = $value;
}
}
}
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319816.htmlTechArticleIf no callback function is provided, array_filter() will delete all entries in the input that have a value of FALSE. You can use this function to delete null elements from an array. Copy code...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn