Skip to content
Advertisement

comparing 2 arrays for matching postal codes and grabbing the adjacent array value

I am trying to make a little batch upload tool to upload tracking numbers.

I have a csv with 2 columns: postal_code, tracking_number

and I have my sql that selects order_id, postal_code:

JavaScript

So I have the 2 arrays printing out:

From csv upload:

JavaScript

From sql selection:

JavaScript

What I want to do is compare the postal codes from the csv with the postal codes from the sql selection. And then if a match is found select both the order_id and the tracking_number and push those to a new array together.

I am not sure about a few things:

  1. my csv file open seems to be a different amount of dimensions to the array of my selection so I am not sure if that will matter but I think it will
  2. I am not sure what to do to compare the postal codes. I think I will ned to use a foreach loop to check for matches but I am little shaky on this because they are different dimensions.
  3. My postal codes have different formatting, some with spaces and some without so I think I will have to address that by converting the formatting to be consistent.

Advertisement

Answer

You can achieve this result by using array_search to find the delivery_postcode for each order in $csv_array, and if found, merging the entry from $csv_array with the entry from $orders to make the output tracking array. Note I have re-indexed $csv_array with the keys from the first line of the CSV file, and I am removing all spaces from the postcode values (so that e.g. A0N2H0 will match A0N 2H0) to make this possible.

JavaScript

Output (for your sample data):

JavaScript

Demo on 3v4l.org

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement