private function Reader::resolveManifestLength in Drupal 7
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
Namespace
TYPO3\PharStreamWrapper\PharCode
private function resolveManifestLength($content) {
if (strlen($content) < 4) {
return null;
}
return static::resolveFourByteLittleEndian($content, 0);
}