“Como remover o valor vazio no array php” Respostas de código

Matriz PHP Remova valores vazios

<?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;}}));
Matteoweb

PHP Remova os valores vazios da matriz

// 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) !== "";
});
Geeky Bravo

Como remover o valor vazio no 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);
?>
Mohamad

Remova os valores nulos do array php

array_filter
Sore Skimmer

Respostas semelhantes a “Como remover o valor vazio no array php”

Perguntas semelhantes a “Como remover o valor vazio no array php”

Mais respostas relacionadas para “Como remover o valor vazio no array php” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código