可能重复:
有没有办法以字节为单位获取 PHP 变量的大小?
我需要使用 php 查找 int/char 或数组的字节大小。我认为它可以通过 php 中的内存管理来实现。
/* load before whit a value */
$before = memory_get_usage(FALSE);
/* make sure $temp dosn't have a content before */
$temp = NULL;
/* calculate current usage */
$before = memory_get_usage(FALSE);
/* copy the content to a nex varibale */
$temp = $variable_to_test . '';
/* calculate the new usage */
$after = memory_get_usage(FALSE);
/* clean up data */
unset($temp);
/* calculate the incresed memory usage */
$memory_usage = $after - $before;