PHP 允许的内存大小已耗尽但尝试分配的内存更少

PHP Allowed memory size exhausted but tried to allocate is even fewer

我在使用 imagecreatefrompng($image) 函数时遇到此错误:

Got error 'PHP message: PHP Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 61440 bytes) in /var/www/vhosts/SNIPED/httpdocs/app/helper.php on line 115\nPHP message: PHP Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 147456 bytes) in /var/www/vhosts/SNIPED/httpdocs/vendor/composer/ClassLoader.php on line 412

很遗憾,我不确定,因为 61440 字节少于 允许的 1073741824 字节。我做错了什么?

尝试分配的字节数 PHP 是递增的:它要求 61440 字节,当添加到它已经使用的内存时,超出了允许的内存量。