QuickHashStringIntHash::saveToFile

(无版本信息可用,可能只存在于 Git 中)

QuickHashStringIntHash::saveToFile此方法将内存中的哈希存储到磁盘

描述

public QuickHashStringIntHash::saveToFile(string $filename): void

此方法将现有的哈希存储到磁盘上的文件,格式与 loadFromFile() 可以读取的格式相同。

参数

filename

存储哈希文件的名称。

返回值

不返回值。

示例

示例 #1 QuickHashStringIntHash::saveToFile() 示例

<?php
$hash
= new QuickHashStringIntHash( 1024 );
var_dump( $hash->add( "forty three", 42 ) );
var_dump( $hash->add( "fifty two", 52 ) );

$hash->saveToFile( '/tmp/test.hash.string' );
?>

添加注释

用户贡献的注释

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