What\'s the best way to determine whether or not a string is the result of the serialize() function?
serialize()
https://www.php.net/manual/en/function.serialize
build in to a function
function isSerialized($value) { return preg_match('^([adObis]:|N;)^', $value); }