“Matriz PHP Eliminar valores vacíos” 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

Cómo eliminar los valores nulos en la matriz PHP

array_filter();
Mysterious Mink

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

Eliminar los valores nulos de la matriz PHP

array_filter
Sore Skimmer

Respuestas similares a “Matriz PHP Eliminar valores vacíos”

Preguntas similares a “Matriz PHP Eliminar valores vacíos”

Más respuestas relacionadas con “Matriz PHP Eliminar valores vacíos” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código