BitOne / php-meminfo

PHP extension to get insight about memory usage
MIT License
1.08k stars 78 forks source link

Class static in memory are not detected by meminfo #75

Closed BitOne closed 6 years ago

BitOne commented 6 years ago

Meminfo works by browsing the execution frame and collecting all items that are linked to variables, or descendants of these variables.

But static member of classes don't live in the execution frame. So they are not accounted by meminfo.

Related to #63