The unserialize() function is used to deserialize the object or array serialized by the serialize() function and return the original object structure.
PHP version requirements: PHP 4, PHP 5, PHP 7
mixed unserialize (string $str)
Parameter description:
$str: Serialized string.
What is returned is the converted value, which can be integer, float, string, array or object.
If the passed string is not deserializable, FALSE is returned and an E_NOTICE is generated.
The output is:
Array( [0] => Google [1] => Codercto [2] => Facebook)