I have a PHP array being created from a .csv file, the resulting array has data that I have no use for so I would like to cleanup the array before proceeding.
array (size=45)
0 =>
array (size=63)
'"Unique ID"' => string '3585370' (length=7)
'Source ID' => string '242' (length=3)
'Source Date' => string '20/9/18 12:08:22 AM' (length=19)
'Email' => string 'email@email.com' (length=3)
How can I remove "Source Date" and "Source ID" from the array of each record?