What's limiting my PHP resources?

后端 未结 3 663
深忆病人
深忆病人 2021-01-26 01:24

I\'m having a problem getting more memory out of PHP.

This is the error message:

Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to a         


        
3条回答
  •  借酒劲吻你
    2021-01-26 02:00

    I just pored over the code I was running, and someone had hard-coded this into a config file:

    ini_set('memory_limit', '20M');
    

    Which was overriding everything else I was doing. Whew.

提交回复
热议问题