Answers for "delete null from array php"

PHP
10

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
0

php remove empty values from array

// One liner to remove empty ("" empty string) elements from your array.
// Note: This code deliberately keeps null, 0 and false elements.
$array = array_filter($array, function($a) {return $a !== "";});

// OR if you want to trim your array elements first:
// Note: This code also removes null and false elements.
$array = array_filter($array, function($a) {
    return trim($a) !== "";
});
Posted by: Guest on September-18-2020
0

how to remove NULL values in array PHP

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

php remove empty values from array

$array = array_filter($array, function($a) {
    return trim($a) !== "";
});
Posted by: Guest on December-25-2020
0

remove null values from array php

array_filter
Posted by: Guest on December-01-2020

Code answers related to "delete null from array php"

Browse Popular Code Answers by Language