Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 10415

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>This method checks whether a key is part of the hash</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="quickhashinthash.delete.html">QuickHashIntHash::delete</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="quickhashinthash.get.html">QuickHashIntHash::get</a></div>
 <div class="up"><a href="class.quickhashinthash.html">QuickHashIntHash</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="quickhashinthash.exists" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">QuickHashIntHash::exists</h1>
  <p class="verinfo">(PECL quickhash &gt;= Unknown)</p><p class="refpurpose"><span class="refname">QuickHashIntHash::exists</span> &mdash; <span class="dc-title">This method checks whether a key is part of the hash</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-quickhashinthash.exists-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="type">bool</span> <span class="methodname"><strong>QuickHashIntHash::exists</strong></span>
    ( <span class="methodparam"><span class="type">int</span> <code class="parameter">$key</code></span>
   )</div>

  <p class="para rdfs-comment">
   This method checks whether an entry with the provided key exists in the
   hash.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-quickhashinthash.exists-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em><code class="parameter">key</code></em></span>
     <dd>

      <p class="para">
       The key of the entry to check for whether it exists in the hash.
      </p>
     </dd>

    </dt>

   </dl>

  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-quickhashinthash.exists-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns <strong><code>TRUE</code></strong> when the entry was found, or <strong><code>FALSE</code></strong> when the entry is not
   found.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-quickhashinthash.exists-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-5141">
    <p><strong>Example #1  <span class="function"><strong>QuickHashIntHash::exists()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br /></span><span style="color: #FF8000">//generate&nbsp;200000&nbsp;elements<br /></span><span style="color: #0000BB">$array&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">range</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">199999&nbsp;</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$existingEntries&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">array_rand</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">array_flip</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">$array&nbsp;</span><span style="color: #007700">),&nbsp;</span><span style="color: #0000BB">180000&nbsp;</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$testForEntries&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">array_rand</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">array_flip</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">$array&nbsp;</span><span style="color: #007700">),&nbsp;</span><span style="color: #0000BB">1000&nbsp;</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$foundCount&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">;<br /><br />echo&nbsp;</span><span style="color: #DD0000">"Creating&nbsp;hash:&nbsp;"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">microtime</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">true&nbsp;</span><span style="color: #007700">),&nbsp;</span><span style="color: #DD0000">"\n"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$hash&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">QuickHashIntHash</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">100000&nbsp;</span><span style="color: #007700">);<br />echo&nbsp;</span><span style="color: #DD0000">"Adding&nbsp;elements:&nbsp;"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">microtime</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">true&nbsp;</span><span style="color: #007700">),&nbsp;</span><span style="color: #DD0000">"\n"</span><span style="color: #007700">;<br />foreach(&nbsp;</span><span style="color: #0000BB">$existingEntries&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">$key&nbsp;</span><span style="color: #007700">)<br />{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$hash</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">add</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">$key</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">56&nbsp;</span><span style="color: #007700">);<br />}<br /><br />echo&nbsp;</span><span style="color: #DD0000">"Doing&nbsp;1000&nbsp;tests:&nbsp;"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">microtime</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">true&nbsp;</span><span style="color: #007700">),&nbsp;</span><span style="color: #DD0000">"\n"</span><span style="color: #007700">;<br />foreach(&nbsp;</span><span style="color: #0000BB">$testForEntries&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">$key&nbsp;</span><span style="color: #007700">)<br />{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$foundCount&nbsp;</span><span style="color: #007700">+=&nbsp;</span><span style="color: #0000BB">$hash</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">exists</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">$key&nbsp;</span><span style="color: #007700">);<br />}<br />echo&nbsp;</span><span style="color: #DD0000">"Done,&nbsp;</span><span style="color: #0000BB">$foundCount</span><span style="color: #DD0000">&nbsp;found:&nbsp;"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">microtime</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">true&nbsp;</span><span style="color: #007700">),&nbsp;</span><span style="color: #DD0000">"\n"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
    </div>

    <div class="example-contents"><p>The above example will output
something similar to:</p></div>
    <div class="example-contents screen">
<div class="cdata"><pre>
Creating hash: 1263588703.0748
Adding elements: 1263588703.0757
Doing 1000 tests: 1263588703.7851
Done, 898 found: 1263588703.7897
</pre></div>
    </div>
   </div>
  </p>
 </div>



</div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="quickhashinthash.delete.html">QuickHashIntHash::delete</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="quickhashinthash.get.html">QuickHashIntHash::get</a></div>
 <div class="up"><a href="class.quickhashinthash.html">QuickHashIntHash</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>