QuickHashIntHash::loadFromFile

(PECL quickhash >= Unknown)

QuickHashIntHash::loadFromFile此工厂方法从文件创建哈希

描述

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

此工厂方法从磁盘上的定义文件创建新的哈希。文件格式由签名 'QH\0x11\0'、元素数量(以系统 Endianness 形式的 32 位有符号整数)组成,后面跟着 32 位有符号整数,这些整数以代码运行的系统使用的 Endianness 形式打包在一起。对于每个哈希元素,存储两个 32 位有符号整数。每个元素的第一个是键,第二个是属于该键的值。一个例子可能是

示例 #1 QuickHash IntHash 文件格式

00000000  51 48 11 00 02 00 00 00  01 00 00 00 01 00 00 00  |QH..............|
00000010  03 00 00 00 09 00 00 00                           |........|
00000018

示例 #2 QuickHash IntHash 文件格式

header signature ('QH'; key type: 1; value type: 1; filler: \0x00)
00000000  51 48 11 00

number of elements:
00000004  02 00 00 00

data string:
00000000  01 00 00 00 01 00 00 00  03 00 00 00 09 00 00 00

key/value 1 (key = 1, value = 1)
01 00 00 00  01 00 00 00

key/value 2 (key = 3, value = 9)
03 00 00 00  09 00 00 00

参数

filename

要从中读取哈希的文件的文件名。

options

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

返回值

返回新的 QuickHashIntHash

示例

示例 #3 QuickHashIntHash::loadFromFile() 示例

<?php
$file
= dirname( __FILE__ ) . "/simple.hash";
$hash = QuickHashIntHash::loadFromFile(
$file,
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

添加笔记

用户贡献笔记

此页面没有用户贡献的笔记。
To Top