(PECL quickhash >= Unknown)
QuickHashIntSet::loadFromString — 此工厂方法从字符串创建集合
$contents
, int $size
= ?, int $options
= ?): QuickHashIntSet此工厂方法从字符串中的定义创建新集合。文件格式由 32 位有符号整数组成,它们以代码运行的系统使用的字节序打包在一起。
contents
包含集合序列化格式的字符串。
size
要配置的桶列表数量。您传入的数字将自动向上舍入到下一个 2 的幂。它也自动限制在 4
到 4194304
之间。
options
与类构造函数相同的选项;除了 size 选项被忽略外。它会自动计算为与集合中的条目数量相同,向上舍入到最接近的 2 的幂,自动限制在 64
到 4194304
之间。
返回新的 QuickHashIntSet。
示例 #1 QuickHashIntSet::loadFromString() 示例
<?php
$contents = file_get_contents( dirname( __FILE__ ) . "/simple.set" );
$set = QuickHashIntSet::loadFromString(
$contents,
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