Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a function in PHP (or a PHP extension) to find out how much memory a given variable uses? sizeof just tells me the number of elements/properties.

EDIT: memory_get_usage helps in that it gives me the memory size used by the whole script. Is there a way to do this for a single variable?

share|improve this question

5 Answers

up vote 36 down vote accepted

There's no direct way to get the memory usage of a single variable, but as Gordon suggested, you can use memory_get_usage. That will return the total amount of memory allocated, so you can use a workaround and measure usage before and after to get the usage of a single variable. This is a bit hacky, but it should work.

$start_memory = memory_get_usage();
$foo = "Some variable";
echo memory_get_usage() - $start_memory;

Note that this is in no way a reliable method, you can't be sure that nothing else touches memory while assigning the variable, so this should only be used as an approximation.

You can actually turn that to an function by creating a copy of the variable inside the function and measuring the memory used. Haven't tested this, but in principle, I don't see anything wrong with it:

function sizeofvar($var) {
    $start_memory = memory_get_usage();
    $tmp = unserialize(serialize($var));
    return memory_get_usage() - $start_memory;
}
share|improve this answer
6  
$tmp = $var will create a shallow copy. This will not allocate more memory until $tmp is modified. – Gordon Feb 3 '10 at 14:48
@Gordon, you're right, I kinda overlooked that point. As I cannot figure out a proper way to modify the variable without changing it's type or size, I'll leave that be. Perhaps someone can come up with a proper idea :) – Tatu Ulmanen Feb 3 '10 at 15:03
4  
how about $tmp = unserialize(serialize($var)); This would combine Aistina's approach above. – Gordon Feb 3 '10 at 15:28
also, since $var is already a shallow copy or reference of what was passed to the function, you don't need $tmp, but can reassign to $var. This saves the internal reference from $tmp to $var. – Gordon Feb 3 '10 at 15:50

In answer to Tatu Ulmanens answer:

It should be noted, that $start_memory itself will take up memory (PHP_INT_SIZE * 8).

So the whole function should become:

function sizeofvar($var) {
    $start_memory = memory_get_usage();
    $var = unserialize(serialize($var));
    return memory_get_usage() - $start_memory - PHP_INT_SIZE * 8;
}

Sorry to add this as an extra answer, but I can not yet comment on an answer.

share|improve this answer
1  
Can you explain why * 8? Thanks! – sierrasdetandil Feb 7 at 13:01
@sierrasdetandil It seems that $start_memory does not take up only PHP_INT_SIZE bytes, but PHP_INT_SIZE*8. You can try that by calling this function, it should return 0: function sizeofvar() { $start_memory = memory_get_usage(); return memory_get_usage() - $start_memory - PHP_INT_SIZE*8; } – para Mar 6 at 11:31

Never tried, but Xdebug traces with xdebug.collect_assignments may be enough.

share|improve this answer

See:

Note that this won't give you the memory usage of a specific variable though.

You could also have a look at the PECL extension Memtrack, though the documentation is a bit lacking, if not to say, virtually non-existent.

share|improve this answer
Yes. It can be used indirectly to answer the question. – Notinlist Feb 3 '10 at 14:42

No, there is not. But you can serialize($var) and check the strlen of the result for an approximation.

share|improve this answer
A good heuristic for relative size at least. – Jon z Sep 17 '12 at 13:45
This is a much better approach, since it avoids the whole GC thing. – Gleno Feb 10 at 21:37
2  
It's a terrible approximation. Every item in an array in PHP is ~80 bytes, yet strlen(serialize(array(1,2,3))) is 30. – gsnedders Feb 10 at 22:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.