% sudo pear install PHPDocumentor
Password:
downloading PhpDocumentor-1.2.3.tgz ...
Starting to download PhpDocumentor-1.2.3.tgz (2,656,621 bytes)
......................................................................................done: 2,656,621 bytes

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 8192 bytes) in /usr/share/php/PEAR/Installer.php on line 316

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 35 bytes) in /usr/share/php/System.php on line 133

PHPDocumentorがインストールに標準の8M以上のメモリを必要するのは何とかした方が良いと思った。

Debian/Ubuntuの場合は/etc/php5/cli/php.iniを変える。

;memory_limit = 8M      ; Maximum amount of memory a script may consume (8MB)
memory_limit = 16M

Comments


Option