What is the maximum size of an array in PHP?

There is no max on the limit of an array. There is a limit on the amount of memory your script can use. This can be changed in the ‘memory_limit’ in your php.ini configuration.

Leave a Comment