How to Remove Empty Values from Array in 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...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Convert String into Array in PHP?
- How to Install Apache PHP MySQL and Phpmyadmin on Ubuntu?
- Laravel Like Dislike System Tutorial Example
- PHP Ajax Multiple Image Upload with Preview Example
- How to Remove Duplicate Values from Array in PHP?
- How to Remove White Space from String in PHP?
- How to Get First Element of Array in Javascript?
- How to Remove undefined Value from Array in JQuery?
- How to Add Prefix in Each Key of PHP Array?
- How to Get Minimum Key Value of Array in PHP?
- How to access PHP variables in JQuery?
- How to Find Day Name from Specific Date in PHP?
- How to Remove Null Values from Array in PHP?