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
https://forums.phpfreaks.com/topic/248095-array-filter/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.