Allowed memory size of 33554432 bytes exhausted (tried to allocate 43148176 bytes) in php

前端 未结 21 1289
猫巷女王i
猫巷女王i 2020-11-21 22:14

This error message is being presented, any suggestions?

Allowed memory size of 33554432 bytes exhausted (tried to allocate 43148176 bytes) in php

21条回答
  •  自闭症患者
    2020-11-21 22:54

    You can increase the memory allowed to php script by executing the following line above all the codes in the script:

    ini_set('memory_limit','-1'); // enabled the full memory available.
    

    And also de allocate the unwanted variables in the script.

    Check this php library : Freeing memory with PHP

提交回复
热议问题