I alway have the problem when I query a big result to PHP array. PHP said something like:
Allowed memory size of 8388608 bytes exhausted at (null):0 (tried to allocate 129 bytes)
What's exactly going on? And how can I solve this?
What exactly is going on is what it says: PHP is not allowed to use any more memory than 8388608 bytes. (This limit is set in php.ini by the memory_limit directive. Change that to change the maximum allowed memory.)
Weedpacket wrote:What exactly is going on is what it says: PHP is not allowed to use any more memory than 8388608 bytes. (This limit is set in php.ini by the memory_limit directive. Change that to change the maximum allowed memory.)
Oh! Thank you very much 🙂