Php

Asked • 05/14/19

Remove empty array elements?

Some elements in my array are empty strings based on what the user has submitted. I need to remove those elements. I have this: foreach($linksArray as $link) { if($link == '') { unset($link); } } print_r($linksArray); But it doesn't work, `$linksArray` still has empty elements. I have also tried doing it with the `empty()` function but the outcome is the same.

1 Expert Answer

By:

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.