How to Remove Empty Values from an Array in PHP (2024)

Topic: PHP / MySQLPrev|Next

Answer: Use the PHP array_filter() function

You can simply use the PHP array_filter() function to remove or filter empty values from an array. This function typically filters the values of an array using a callback function.

However, if no callback function is specified, all empty entries of array will be removed, such as "" (an empty string), 0 (0 as an integer), 0.0 (0 as a float), "0" (0 as a string), NULL, FALSE and array() (an empty array). Let's try out an example to understand how it actually works:

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

In the above example the values 0 and "0" are also removed from the array. If you want to keep them, you can define a callback function as shown in the following example:

<?php$array = array("apple", "", 0, 2, null, -5, "0", "orange", 10, false);var_dump($array);echo "<br>"; // Defining a callback functionfunction myFilter($var){ return ($var !== NULL && $var !== FALSE && $var !== "");}// Filtering the array$result = array_filter($array, "myFilter"); var_dump($result);?>

The callback function myFilter() is called for each element of the array. If myFilter() returns TRUE, then that element will be appended to the result array, otherwise not.

Related FAQ

Here are some more FAQ related to this topic:

How to Remove Empty Values from an Array in PHP (2024)
Top Articles
Samsung Galaxy S23 vs Galaxy S24: What’s the difference? | Samsung UK
Best Side Hustles: 7 Legit Side Hustles for Stay-At-Home Dads | Promoted | 30Seconds Dad
Whas Golf Card
My Arkansas Copa
Cars & Trucks - By Owner near Kissimmee, FL - craigslist
His Lost Lycan Luna Chapter 5
Craigslist Free Stuff Appleton Wisconsin
Lexington Herald-Leader from Lexington, Kentucky
Mawal Gameroom Download
Here's how eating according to your blood type could help you keep healthy
Craigslist Dog Sitter
LeBron James comes out on fire, scores first 16 points for Cavaliers in Game 2 vs. Pacers
Guardians Of The Galaxy Vol 3 Full Movie 123Movies
Hillside Funeral Home Washington Nc Obituaries
Thotsbook Com
Summoners War Update Notes
Truck Toppers For Sale Craigslist
Leeks — A Dirty Little Secret (Ingredient)
Plan Z - Nazi Shipbuilding Plans
Forum Phun Extra
ZURU - XSHOT - Insanity Mad Mega Barrel - Speelgoedblaster - Met 72 pijltjes | bol
Glenda Mitchell Law Firm: Law Firm Profile
Hobby Stores Near Me Now
Airtable Concatenate
Inkwell, pen rests and nib boxes made of pewter, glass and porcelain.
Pain Out Maxx Kratom
Danielle Moodie-Mills Net Worth
Craigslist Northern Minnesota
Healthy Kaiserpermanente Org Sign On
Winterset Rants And Raves
Diggy Battlefield Of Gods
Wildfangs Springfield
Honda Ruckus Fuse Box Diagram
Duff Tuff
Mandy Rose - WWE News, Rumors, & Updates
Kornerstone Funeral Tulia
Restored Republic May 14 2023
This 85-year-old mom co-signed her daughter's student loan years ago. Now she fears the lender may take her house
Сталь aisi 310s российский аналог
Craigslist Freeport Illinois
Andrew Lee Torres
Lacy Soto Mechanic
Hkx File Compatibility Check Skyrim/Sse
Satucket Lectionary
Hampton In And Suites Near Me
New Zero Turn Mowers For Sale Near Me
1990 cold case: Who killed Cheryl Henry and Andy Atkinson on Lovers Lane in west Houston?
Plasma Donation Greensburg Pa
Craigslist.raleigh
Asisn Massage Near Me
Coors Field Seats In The Shade
Latest Posts
Article information

Author: Pres. Lawanda Wiegand

Last Updated:

Views: 5309

Rating: 4 / 5 (51 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Pres. Lawanda Wiegand

Birthday: 1993-01-10

Address: Suite 391 6963 Ullrich Shore, Bellefort, WI 01350-7893

Phone: +6806610432415

Job: Dynamic Manufacturing Assistant

Hobby: amateur radio, Taekwondo, Wood carving, Parkour, Skateboarding, Running, Rafting

Introduction: My name is Pres. Lawanda Wiegand, I am a inquisitive, helpful, glamorous, cheerful, open, clever, innocent person who loves writing and wants to share my knowledge and understanding with you.