How to find memory used by an object in PHP? (c's sizeof). The object I want to find out about is a dictionary with strings and ints in it so it makes it hard to calculate it manually. Also string in php can be of varied length depending on encoding (utf8 etc) correct?
|
You could use memory_get_usage(). Run it once before creating your object, then again after creating your object, and take the difference between the two results. |
|||||
|
|
To get an idea about the objects size, try
It is by no means accurate, but an easy way to get a number for comparison. |
|||
|
|
If you need to know the size of an already created object or array, you can use the following code to find it out.
This essentially creates a copy of the array structure and all of its members. A not 100% accurate, but still working version is also:
Hope that helps for cases where the object is already build. |
|||
|
|
|
The problem is that count is intended to count the indexes in an array, not the properties on an object (unless it's a custom object that implements the Countable interface). Try casting the object, like below, as an array and seeing if that helps. $total = count((array)$obj); Simply casting an object as an array won't always work but being a simple stdClass object it should get the job done here. |
|||
|
|
|
I don't know that there is a simple way to get the size of an object in PHP. You might just have to do an algorith that
I'm sure there is a better way, but this would work, even though it would be a pain. |
|||||||||||
|