Re: [PHP] array size in bytes

2006-10-02 Thread Richard Lynch
On Mon, October 2, 2006 3:07 am, Roman Rumisek wrote: Exists in PHP function returning array size in bytes ? (For saving array into shared memory without serialize.) No. And you could maybe write one, if it was all strings in the array, but you're gonna be screwed when PHP 6 with Unicode comes

Re: [PHP] array size in bytes

2006-10-02 Thread tedd
At 4:18 PM -0500 10/2/06, Richard Lynch wrote: On Mon, October 2, 2006 3:07 am, Roman Rumisek wrote: Exists in PHP function returning array size in bytes ? (For saving array into shared memory without serialize.) No. And you could maybe write one, if it was all strings in the array, but

Re: [PHP] array size in bytes

2006-10-02 Thread Chris Boget
How about saving the array as a file and then do a filesize()? Wouldn't this work? $arraySize = strlen( implode( '', $array )); Though, additional work would need to be done for nested arrays. thnx, Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: