unserialize

Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Creates a PHP value from a stored representation
<?php unserialize(string $data, array $options = []): mixed
<?php         $output = $this->output;



        if (str_starts_with($output, self::SERIALIZATION_TOKEN)) {

            $output = unserialize(

                substr($output, strlen(self::SERIALIZATION_TOKEN))

            );

        }



        return $output;