本文整理汇总了PHP中Info::isCompressedFile方法的典型用法代码示例。如果您正苦于以下问题:PHP Info::isCompressedFile方法的具体用法?PHP Info::isCompressedFile怎么用?PHP Info::isCompressedFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Info
的用法示例。
在下文中一共展示了Info::isCompressedFile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* @param Index $index
*/
public function __construct(Index $index)
{
$this->index = $index;
$this->filename = $index->getInfo()->getDictFilename();
$this->isCompressed = Info::isCompressedFile($this->filename);
$this->open();
}
示例2: readFile
/**
* Reads index data.
*
* @throws IndexException
*/
protected function readFile()
{
$filename = $this->getFilename();
$data = file_get_contents($filename);
$fsize = filesize($filename);
if ($data && Info::isCompressedFile($filename)) {
$data = gzdecode($data);
$fsize = strlen($data);
}
if (!$data) {
throw new IndexException($this, 'Read data error.');
}
if ($fsize != $this->info->idxfilesize) {
throw new IndexException($this, 'Index file size mismatch.');
}
$pos = 0;
while ($pos < $fsize) {
$chars = [];
while (true) {
$x = unpack("@{$pos}/Cch", $data);
$pos++;
if ($x['ch'] === 0) {
break;
}
$chars[] = $x['ch'];
}
$word = call_user_func_array('pack', array_merge(['C*'], $chars));
$x = unpack("@{$pos}/Noffset/Nsize", $data);
$this->words[$word] = [$x['offset'], $x['size']];
$pos += 8;
}
}