ID: 47038
Updated by: [email protected]
Reported By: tim at digicol dot de
-Status: Open
+Status: Assigned
Bug Type: Scripting Engine problem
-Operating System: Linux (Debian 4.0 x86)
+Operating System: *
-PHP Version: 5.3CVS-2009-01-08 (snap)
+PHP Version: 5.3CVS, 6CVS (2009-01-20)
Assigned To: scottmac
Previous Comments:
------------------------------------------------------------------------
[2009-01-20 11:11:51] tim at digicol dot de
Happens to me with PHP 6.0.0-dev (snapshot php6.0-200901200730.tar.bz2)
as well.
------------------------------------------------------------------------
[2009-01-08 15:57:50] tim at digicol dot de
Description:
------------
With today's PHP 5.3 snapshot, include() on my Linux box leaks memory;
I've noticed this because we're using long-running scripts with the
PHP CLI (where Smarty's fetch/display methods call include()...). This
doesn't happen with PHP 5.2.6.
I tested with an unchanged copy of php.ini-recommended and just
'./configure' without any options, on Debian Linux 4.0, running in
VMware Fusion on my Intel Mac.
Thanks for looking into this, and for the great work on PHP!
Reproduce code:
---------------
<?php
// Create an empty file
touch('empty.txt');
while (true)
{
include('empty.txt');
echo memory_get_usage() . "\n";
}
?>
Expected result:
----------------
No increase in memory usage.
Actual result:
--------------
Memory usage increases constantly, until PHP exits because the memory
limit is exceeded.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=47038&edit=1