Well i'm debuging my php script, i.e:
<?php
$inic = memory_get_usage();
... code ...
echo (memory_get_usage()-$inic)/1024;
?>
and it show: about 60.578125, it mean 60kb isn't?
this ... code ... has many str_replace and some preg_replace.
I would like to know if 60kb is too much? or normal? or good? someone could tell me it?
thanks.
Why Closed?