naomi - 2010-06-24 12:43:28
Hi,
When I run this, the memory usage goes up and up.
Am I doing something wrong, or is the class buggy?
<?
include "php_serial.class.php";
while ( 1 )
{
$serial = new phpSerial;
unset ( $serial );
echo memory_get_usage () . "\n";
sleep ( 1 );
}
?>