function Reader::resolveManifestLength

Parameters

string $content:

Return value

int|null

1 call to Reader::resolveManifestLength()
Reader::extractData in misc/typo3/phar-stream-wrapper/src/Phar/Reader.php

File

misc/typo3/phar-stream-wrapper/src/Phar/Reader.php, line 197

Class

Reader

Namespace

TYPO3\PharStreamWrapper\Phar

Code

private function resolveManifestLength($content) {
    if (strlen($content) < 4) {
        return null;
    }
    return static::resolveFourByteLittleEndian($content, 0);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.