first_page the funky knowledge base
personal notes from way, _way_ back and maybe today

PHP and Simple XML: “Allowed memory size of 8388608 bytes exhausted”; simplexml

The PHP fatal error “Allowed memory size of 8388608 bytes exhausted” is thrown when Simple XML opens a “large” XML document. This issue is resolved by setting memory_limit in php.ini or as a statement:

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

This error can be a reminder that Simple XML opens entire documents into memory.

mod date: 2008-08-25T00:36:39.000Z