重複の可能性:
PHP 変数のサイズをバイト単位で取得する方法はありますか?
int/char または array の php を使用してバイト単位でサイズを見つける必要があります。php のメモリ管理で可能だと思います。
重複の可能性:
PHP 変数のサイズをバイト単位で取得する方法はありますか?
int/char または array の php を使用してバイト単位でサイズを見つける必要があります。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;