Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
TCPDF を使用 すると、次の致命的なエラーが表示されます
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 16 bytes) in D:\wamp\www\tcpdf\unicode_data.php on line 7833
そのエラーを修正する方法-私のphpバージョンはPHPバージョン:5.2.5 Apacheバージョン:Apache/2.2.6 (Win32)
つまり、PDF ファイルを生成する PHP スクリプトには 8 Mb の RAM では不十分です。
php.ini に移動し、「memory_limit」を見つけて、その行を次のように変更します。
memory_limit = 256M;
その後、Apache を再起動します。