Array Is Full¶
When using append, the next id is calculated based on the largest integer key ever used in that array. When the array has reached the biggest integer possible, a.k.a. PHP_INT_MAX, then the next-array-key generator fails, and this error is displayed.
Also, it is a fatal error to fill an array beyond its capacity.