PHP 에서

Fatal error:  Allowed memory size of 33554432 bytes exhausted

와 같은 에러가 발생하고 있다면 메모리를 확보하는 방법이 있습니다.

php.ini

에서

memory_limit = xx MB

를 설정 합니다.

또는

php 파일을 열어 “<?” 또는 “<?php” 다음 줄에

ini_set(‘memory_limit’, ‘xxM’);

를 추가하고 xx 에 용량을 설정 합니다.

Leave a Reply

Your email address will not be published. Required fields are marked *