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     assert(! isset($getopt['testdox-file']) || is_string($getopt['testdox-file']));



    assert(isset($getopt['phpunit-argv']) && is_string($getopt['phpunit-argv']));

    $phpunitArgv = unserialize($getopt['phpunit-argv'], ['allowed_classes' => false]);

    assert(is_array($phpunitArgv));



    $bootPest();
<?php             $contents = file_get_contents($testresultFile->getPathname());

            assert($contents !== false);

            $testResult = unserialize($contents);

            assert($testResult instanceof TestResult);



            $testResultSum = new TestResult(