Skip to content
Advertisement

Combine duplicate entries in array / foreach

I am trying to combine two entries either on the array level or foreach level (either would work fine)

Here is the code:

JavaScript

Here is the output:

JavaScript

Here is the desired output:

JavaScript

Just for a bit of background I am trying to get a list of files from aws s3 and display the contents of each folder (‘folder’, ‘general’, ‘planning’ etc…) but when there is more than one file in a folder it prints the folder twice (as seen in output above).

Here is the file structure on s3:

image of file structure

I have tried the array_unique() function but this gave the same output.

Any help would be much appreciated.

Output of $objects[‘Contents’]:

JavaScript

Output of $folders:

JavaScript

Advertisement

Answer

You can do it by giving your $folders array the key as the folder name, and as the value an array of subfolders :

JavaScript

Disclaimer : The code is working and is giving you an idea for a better logic. It’s not optimized nor is it the best solution. But it is A solution.

https://wtools.io/php-sandbox/b0dL

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