QuickHashIntSet::loadFromFile

(PECL quickhash >= 未知)

QuickHashIntSet::loadFromFile此工厂方法从文件中创建集合

描述

public static QuickHashIntSet::loadFromFile(string $filename, int $size = ?, int $options = ?): QuickHashIntSet

此工厂方法从磁盘上的定义文件创建新集合。文件格式由 32 位有符号整数组成,这些整数按代码运行的系统所使用的字节序打包在一起。

参数

filename

要从中读取集合的文件名。

size

要配置的桶列表数量。您传入的数字将自动向上取整到下一个 2 的幂。它也自动限制在 44194304 之间。

options

与类构造函数相同的选项;除了大小选项被忽略。它会自动计算为与集合中的条目数量相同,向上取整到最接近的 2 的幂,最大限制为 4194304

返回值

返回一个新的 QuickHashIntSet

示例

示例 #1 QuickHashIntSet::loadFromFile() 示例

<?php
$file
= dirname( __FILE__ ) . "/simple.set";
$set = QuickHashIntSet::loadFromFile(
$file,
QuickHashIntSet::DO_NOT_USE_ZEND_ALLOC
);
foreach(
range( 0, 0x0f ) as $key )
{
printf( "Key %3d (%2x) is %s\n",
$key, $key,
$set->exists( $key ) ? 'set' : 'unset'
);
}
?>

上面的示例将输出类似以下内容

Key   0 ( 0) is unset
Key   1 ( 1) is set
Key   2 ( 2) is set
Key   3 ( 3) is set
Key   4 ( 4) is unset
Key   5 ( 5) is set
Key   6 ( 6) is unset
Key   7 ( 7) is set
Key   8 ( 8) is unset
Key   9 ( 9) is unset
Key  10 ( a) is unset
Key  11 ( b) is set
Key  12 ( c) is unset
Key  13 ( d) is set
Key  14 ( e) is unset
Key  15 ( f) is unset

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top