QuickHashIntStringHash::loadFromString

(PECL quickhash >= 未知)

QuickHashIntStringHash::loadFromString此工厂方法从字符串创建哈希

描述

public static QuickHashIntStringHash::loadFromString(string $contents, int $size = 0, int $options = 0): QuickHashIntStringHash

此工厂方法从字符串中的定义创建新的哈希。格式与“loadFromFile”中使用的格式相同。

参数

contents

包含哈希序列化格式的字符串。

size

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

options

与类构造函数相同的选项;除了 size 选项被忽略。它会自动计算为与哈希中的条目数相同,向上舍入到最接近的 2 的幂,最大限制为 4194304。

返回值

返回一个新的 QuickHashIntStringHash。

示例

示例 #1 QuickHashIntStringHash::loadFromString() 示例

<?php
$contents
= file_get_contents( dirname( __FILE__ ) . "/simple.hash" );
$hash = QuickHashIntStringHash::loadFromString(
$contents,
QuickHashIntStringHash::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

添加注释

用户贡献的注释

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