PHP Conference Japan 2024

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