php 割当てメモリを増やす
2011/04/19
プログラムを動かしていたらメモリ足りない的なエラーがでてきた。
下記のようなエラー。
Allowed memory size of 33554432 bytes exhausted (tried to allocate 35 bytes) in /home/xxx/www/xxx.php on line 849
しょうがないので一時的に割当メモリを増やしてみた。
// 割当メモリを100MBに。
ini_set(‘memory_limit’, ‘100M’);
ini_set(‘memory_limit’, ‘100M’);
~処理~
// 割当メモリをデフォルトに。
ini_restore(‘memory_limit’);