array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'quickhashintstringhash.savetostring.php', 1 => 'QuickHashIntStringHash::saveToString', 2 => 'This method returns a serialized version of the hash', ), 'up' => array ( 0 => 'class.quickhashintstringhash.php', 1 => 'QuickHashIntStringHash', ), 'prev' => array ( 0 => 'quickhashintstringhash.savetofile.php', 1 => 'QuickHashIntStringHash::saveToFile', ), 'next' => array ( 0 => 'quickhashintstringhash.set.php', 1 => 'QuickHashIntStringHash::set', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/quickhash/quickhashintstringhash/savetostring.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PECL quickhash >= Unknown)
QuickHashIntStringHash::saveToString — This method returns a serialized version of the hash
This method returns a serialized version of the hash in the same format that QuickHashIntStringHash::loadFromString() can read.
此函数没有参数。
This method returns a string containing a serialized format of the hash. Each element is stored as a four byte value in the Endianness that the current system uses.
示例 #1 QuickHashIntStringHash::saveToString() example
<?php
$hash = new QuickHashIntStringHash( 1024 );
var_dump( $hash->exists( 4 ) );
var_dump( $hash->add( 4, "thirty four" ) );
var_dump( $hash->exists( 4 ) );
var_dump( $hash->add( 5, "fifty five" ) );
var_dump( $hash->saveToString() );
?>