(PECL quickhash >= 未知)
QuickHashIntHash::loadFromString — 此工厂方法从字符串创建哈希表
$contents
, int $options
= ?): QuickHashIntHash此工厂方法从字符串中的定义创建新的哈希表。文件格式由在代码运行的系统使用的字节序中打包在一起的 32 位有符号整数组成。每个元素都存储两个 32 位有符号整数。每个元素的第一个是键,第二个是属于键的值。
contents
包含哈希表序列化格式的字符串。
options
与类构造函数相同的选项;除了大小选项被忽略。它会自动计算为与哈希表中的条目数量相同,向上舍入到最接近的 2 的幂,最大限制为 4194304
。
返回一个新的 QuickHashIntHash。
范例 #1 QuickHashIntHash::loadFromString() 范例
<?php
$contents = file_get_contents( dirname( __FILE__ ) . "/simple.hash" );
$hash = QuickHashIntHash::loadFromString(
$contents,
QuickHashIntHash::DO_NOT_USE_ZEND_ALLOC
);
foreach( range( 0, 0x0f ) as $key )
{
printf( "Key %3d (%2x) is %s\n",
$key, $key,
$hash->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