How to get the memory allocated to an external script in PHP?

OrangeD00D

New member
In PHP, I have a script that re-sizes an image. I want to find out how much memory that script uses. I can't use memory_get_usage() since that only tracks the current script, and the script I want to track outputs an image. How can I get around this?
 
Back
Top