ItSolutionStuff.com

How to Remove Empty Values from Array in PHP?

By Hardik Savani May 14, 2024
PHP

you have array with empty value and you want to remove all empty value from that array without loop. you can remove your all empty value from array without loop. PHP array_filter function through you can remove all empty value, you can do both way try and see following example how to do this :

Example:

<?php

$example = array(100, "hari", "","hey", "", 77, "hello");

$result = array_filter($example, function($value) {

return !empty($value);

});

print_r($result);

?>

Output:

Array

(

[0] => 100

[1] => hari

[3] => hey

[5] => 77

[6] => hello

)

I hope it can help you...

Tags: PHP
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube