how can i get the \"filesize\" from a string in php?
I put the string in a mysql database as a blob and i need to store the size of the blob. My solution was to create
use mb_strlen() as then you can tell it what type of encoding the string uses (if any) to get the size of it in bytes.