Jump to content

Array Filter


Nodral

Recommended Posts

Hi All

 

I have a script which imports values from a csv file created using excel.  However there are several blank values within the file where the person creating it has used blank columns to create whitespace in the file.

 

I have used array_filter to remove these from the array, however how do I remove the redundant keys and 'squash' everything together so it is nice and neat?

 

eg

import would be , ,id, , surname, ,firstname, ,DOB, , address, ,

 

which returns array after array_filter

[1]-> id

[3]->surname

[5]->firstname

[7]->DOB

[9]->address

 

I want to return as an array which would be

[0]-> id

[1]->surname

[2]->firstname

[3]->DOB

[4]->address

 

Is there a function to do this or would I need to create a custom one?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.