(无版本信息可用,可能仅存在于Git中)
QuickHashStringIntHash::saveToFile — 此方法将内存中的哈希存储到磁盘
此方法将现有的哈希存储到磁盘上的文件中,格式与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' );
?>