Source of: /manual/en/quickhashintset.savetofile.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.quickhashintset.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'quickhashintset.savetofile.php',
1 => 'QuickHashIntSet::saveToFile',
),
'up' =>
array (
0 => 'class.quickhashintset.php',
1 => 'QuickHashIntSet',
),
'prev' =>
array (
0 => 'quickhashintset.loadfromstring.php',
1 => 'QuickHashIntSet::loadFromString',
),
'next' =>
array (
0 => 'quickhashintset.savetostring.php',
1 => 'QuickHashIntSet::saveToString',
),
'alternatives' =>
array (
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="quickhashintset.savetofile" class="refentry">
<div class="refnamediv">
<h1 class="refname">QuickHashIntSet::saveToFile</h1>
<p class="verinfo">(PECL quickhash >= Unknown)</p><p class="refpurpose"><span class="refname">QuickHashIntSet::saveToFile</span> — <span class="dc-title">This method stores an in-memory set to disk</span></p>
</div>
<div class="refsect1 description" id="refsect1-quickhashintset.savetofile-description">
<h3 class="title">Description</h3>
<div class="methodsynopsis dc-description">
<span class="modifier">public</span> <span class="type"><span class="type void">void</span></span> <span class="methodname"><strong>QuickHashIntSet::saveToFile</strong></span>
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$filename</code></span>
)</div>
<p class="para rdfs-comment">
This method stores an existing set to a file on disk, in the same format
that loadFromFile() can read.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-quickhashintset.savetofile-parameters">
<h3 class="title">Parameters</h3>
<p class="para">
<dl>
<dt>
<span class="term"><em><code class="parameter">filename</code></em></span>
<dd>
<p class="para">
The filename of the file to store the hash in.
</p>
</dd>
</dt>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-quickhashintset.savetofile-returnvalues">
<h3 class="title">Return Values</h3>
<p class="para">
No value is returned.
</p>
</div>
<div class="refsect1 examples" id="refsect1-quickhashintset.savetofile-examples">
<h3 class="title">Examples</h3>
<p class="para">
<div class="example" id="example-5021">
<p><strong>Example #1 <span class="function"><strong>QuickHashIntSet::saveToFile()</strong></span> example</strong></p>
<div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB"><?php<br />$set </span><span style="color: #007700">= new </span><span style="color: #0000BB">QuickHashIntSet</span><span style="color: #007700">( </span><span style="color: #0000BB">1024 </span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">( </span><span style="color: #0000BB">$set</span><span style="color: #007700">-></span><span style="color: #0000BB">exists</span><span style="color: #007700">( </span><span style="color: #0000BB">4 </span><span style="color: #007700">) );<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">( </span><span style="color: #0000BB">$set</span><span style="color: #007700">-></span><span style="color: #0000BB">add</span><span style="color: #007700">( </span><span style="color: #0000BB">4 </span><span style="color: #007700">) );<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">( </span><span style="color: #0000BB">$set</span><span style="color: #007700">-></span><span style="color: #0000BB">exists</span><span style="color: #007700">( </span><span style="color: #0000BB">4 </span><span style="color: #007700">) );<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">( </span><span style="color: #0000BB">$set</span><span style="color: #007700">-></span><span style="color: #0000BB">add</span><span style="color: #007700">( </span><span style="color: #0000BB">4 </span><span style="color: #007700">) );<br /><br /></span><span style="color: #0000BB">$set</span><span style="color: #007700">-></span><span style="color: #0000BB">saveToFile</span><span style="color: #007700">( </span><span style="color: #DD0000">'/tmp/test.set' </span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?></span>
</span>
</code></div>
</div>
</div>
</p>
</div>
</div><?php manual_footer(); ?>