Hello,
Is there any limit on how much data can be stored in variables in php ?
Thanks.
| SitePoint Sponsor |



Hello,
Is there any limit on how much data can be stored in variables in php ?
Thanks.

From the manual
As for strings (and I think that also applies to arrays) the limit would be the memory limit of the PHP process AFAIK.Originally Posted by php.net



And how would i know if i am hitting the limit and what will be the consequences ?





out of memory error
The amount of memory PHP will/can consume can be set in php.ini (e.g memory_limit = 128M)
Bookmarks