“array php menghapus nilai kosong rekursif” Kode Jawaban

array php hapus nilai kosong

<?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

Hapus elemen array kosong PHP

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

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

array php menghapus nilai kosong rekursif

array_filter(explode('/', '/home/teste sdsd/   /'), 'trim');
//Result
[
     1 => "home",
     2 => "teste sdsd",
]

//-----------
array_filter(explode('/', '/home/teste sdsd/   /'), 'strlen')
//Result
  [
     1 => "home",
     2 => "teste sdsd",
     3 => "   ",
   ]
Tiago F2

array php menghapus nilai kosong rekursif

array_filter(explode('/', '/home/teste sdsd/   /'), 'trim');
//Result
[
     1 => "home",
     2 => "teste sdsd",
]

//-----------
array_filter(explode('/', '/home/teste sdsd/   /'), 'strlen')
//Result
  [
     1 => "home",
     2 => "teste sdsd",
     3 => "   ",
   ]
Tiago F2

Jawaban yang mirip dengan “array php menghapus nilai kosong rekursif”

Pertanyaan yang mirip dengan “array php menghapus nilai kosong rekursif”

Lebih banyak jawaban terkait untuk “array php menghapus nilai kosong rekursif” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya