what is the largest size a php variable can be?

  • Thread starter Thread starter Mark S
  • Start date Start date
M

Mark S

Guest
specifically im interested in the max size of an array that will have possibly thousands of elements each with very long values.
 
I've personally never ran into problems with a variable or array of any size. The two things that may hinder your script would be the memory limit set for PHP, and the max execution time.

Both can be adjusted in php.ini if needed.
 
Back
Top