(PECL quickhash >= 未知)
QuickHashIntStringHash::saveToFile — 此方法将内存中的哈希表存储到磁盘
此方法将现有的哈希表存储到磁盘上的文件中,格式与loadFromFile()读取的格式相同。
filename
存储哈希表的的文件名。
不返回任何值。
示例 #1 QuickHashIntStringHash::saveToFile() 例子
<?php
$hash = new QuickHashIntStringHash( 1024 );
var_dump( $hash->exists( 4 ) );
var_dump( $hash->add( 4, "forty three" ) );
var_dump( $hash->exists( 4 ) );
var_dump( $hash->add( 4, "fifty two" ) );
$hash->saveToFile( '/tmp/test.string.hash' );
?>