This post is about removing empty elements from the given array using PHP. Here is example
1 2 3 |
$test_array = array('foo', 'bar', '', 'sleep', '',null,'arjun'); $test_array = array_filter($test_array); print_r($test_array); |
Functions :
array_filter — Filters elements of an array using a callback function
I hope you like this Post, Please feel free to comment below, your suggestion and problems if you face - we are here to solve your problems.
I am Arjun from Hyderabad (India). I have been working as a software engineer from the last 7+ years, and it is my passion to learn new things and implement them as a practice. Aside from work, I like gardening and spending time with pets.
Subscribe
Login
0 Comments