PHP: do arrays have a maximum size?

前端 未结 2 1579
渐次进展
渐次进展 2020-11-30 08:39

Is there a limit for an array in PHP?

2条回答
  •  余生分开走
    2020-11-30 09:16

    The only thing I've come across in reference to php is this from bytes.com/forum:

    I don't think there is a limit on how big an array can be, but there is a limit on how much memory your script can use.

    The 'memory_limit' directive in the php.ini configuration file holds the max amount of memory your scripts can consume. Try changing this, see if that helps.

提交回复
热议问题