“Eliminar elementos de matriz vacío PHP” Código de respuesta

Matriz PHP Eliminar valores vacíos

<?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 Eliminar valores vacíos de la 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

Php matriz vacía

//To clear array you are able to simply re-instantiate it
$foo = array();

//To clear $foo from the symbol table use
unset($foo);
MeVyom

Eliminar elementos de matriz vacío PHP

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

$colorsNoEmptyOrNull = array_filter($colors, function($v){ 
 return !is_null($v) && $v !== ''; 
});
//$colorsNoEmptyOrNull is now ["red","blue"]
Grepper

PHP Eliminar valores vacíos de la matriz

$array = array_filter($array, function($a) {
    return trim($a) !== "";
});
Hurt Hedgehog

cómo eliminar el valor vacío en la matriz 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

Respuestas similares a “Eliminar elementos de matriz vacío PHP”

Preguntas similares a “Eliminar elementos de matriz vacío PHP”

Más respuestas relacionadas con “Eliminar elementos de matriz vacío PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código