Skip to content

Tag: multidimensional-array

Processing multi-dimensional $_FILES array

I have the following $_FILES array past through for processing from a support form My main problem is understanding the logic required in order to process the array, check each file is valid (which I already have a list of valid extensions) then rename and store the file appropriately. The solutions on Google…

Search Array : array_filter vs loop

I am really new in PHP and need a suggestion about array search. If I want to search for an element inside a multidimensional array, I can either use array_filter or I can loop through the array and see if an element matching my criteria is present. I see both suggestion at many places. Which is faster? Below…