Answers for "remove empty values in array php"

PHP
11

php array remove empty values

<?php
$arr = array('1', '', '2', '3', '0');
// Incorrect:
print_r(array_filter($arr));
// Correct:
print_r(array_filter($arr, 'strlen'));
//Custom
print_r(array_filter($arr, function ($val) {if ($val > 0) {return true;} else {return false;}}));
Posted by: Guest on July-07-2020
1

how to remove NULL values in array PHP

array_filter();
Posted by: Guest on January-23-2021
0

remove empty array elements php

$colors = array("red","","blue",NULL);

$colorsNoEmptyOrNull = array_filter($colors, function($v){ 
 return !is_null($v) && $v !== ''; 
});
//$colorsNoEmptyOrNull is now ["red","blue"]
Posted by: Guest on October-30-2019
0

how remove empty value in array php

<?php
$array = array("apple", "", 0, 2, null, -5, "0", "orange", 10, false);
var_dump($array);
echo "<br>";
 
// Filtering the array
$result = array_filter($array);                 
var_dump($result);
?>
Posted by: Guest on March-13-2022

Code answers related to "remove empty values in array php"

Browse Popular Code Answers by Language