Search Results

1
vote

How to stop a PHP output buffer from going over the memory limit?

You should raise the memory limit before anything, especially if your only other solution is to go through a temporary file. There's all kinds of downsides to using temporary files (mainly, …