<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.quickhashintstringhash.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'quickhashintstringhash.construct.php',
    1 => 'QuickHashIntStringHash::__construct',
    2 => 'Creates a new QuickHashIntStringHash object',
  ),
  'up' => 
  array (
    0 => 'class.quickhashintstringhash.php',
    1 => 'QuickHashIntStringHash',
  ),
  'prev' => 
  array (
    0 => 'quickhashintstringhash.add.php',
    1 => 'QuickHashIntStringHash::add',
  ),
  'next' => 
  array (
    0 => 'quickhashintstringhash.delete.php',
    1 => 'QuickHashIntStringHash::delete',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/quickhash/quickhashintstringhash/construct.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="quickhashintstringhash.construct" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">QuickHashIntStringHash::__construct</h1>
  <p class="verinfo">(PECL quickhash &gt;= Unknown)</p><p class="refpurpose"><span class="refname">QuickHashIntStringHash::__construct</span> &mdash; <span class="dc-title">Creates a new QuickHashIntStringHash object</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-quickhashintstringhash.construct-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>QuickHashIntStringHash::__construct</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$size</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$options</code><span class="initializer"> = 0</span></span>)</div>

  <p class="simpara">
   This constructor creates a new <span class="classname"><a href="class.quickhashintstringhash.php" class="classname">QuickHashIntStringHash</a></span>. The size is the amount of
   bucket lists to create. The more lists there are, the less collisions you
   will have. Options are also supported.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-quickhashintstringhash.construct-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <dl>
   
    <dt><code class="parameter">size</code></dt>
    <dd>
     <span class="simpara">
      The amount of bucket lists to configure. The number you pass in will be
      automatically rounded up to the next power of two. It is also
      automatically limited from <code class="literal">64</code> to <code class="literal">4194304</code>.
     </span>
    </dd>
   
   
    <dt><code class="parameter">options</code></dt>
    <dd>
     <span class="simpara">
      The options that you can pass in are: <strong><code><a href="class.quickhashintstringhash.php#quickhashintstringhash.constants.check-for-dupes">QuickHashIntStringHash::CHECK_FOR_DUPES</a></code></strong>,
      which makes sure no duplicate entries are added to the hash;
      <strong><code><a href="class.quickhashintstringhash.php#quickhashintstringhash.constants.do-not-use-zend-alloc">QuickHashIntStringHash::DO_NOT_USE_ZEND_ALLOC</a></code></strong> to not use PHP&#039;s internal memory
      manager as well as one of <strong><code><a href="class.quickhashintstringhash.php#quickhashintstringhash.constants.hasher-no-hash">QuickHashIntStringHash::HASHER_NO_HASH</a></code></strong>,
      <strong><code><a href="class.quickhashintstringhash.php#quickhashintstringhash.constants.hasher-jenkins1">QuickHashIntStringHash::HASHER_JENKINS1</a></code></strong> or <strong><code><a href="class.quickhashintstringhash.php#quickhashintstringhash.constants.hasher-jenkins2">QuickHashIntStringHash::HASHER_JENKINS2</a></code></strong>.
      These last three configure which hashing algorithm to use. All options
      can be combined using bitmasks.
     </span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-quickhashintstringhash.construct-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="simpara">
   Returns a new <span class="classname"><a href="class.quickhashintstringhash.php" class="classname">QuickHashIntStringHash</a></span> object.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-quickhashintstringhash.construct-examples">
  <h3 class="title">Beispiele</h3>
  <div class="example" id="example-1">
   <p><strong>Beispiel #1 <span class="function"><strong>QuickHashIntStringHash::__construct()</strong></span> example</strong></p>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />var_dump</span><span style="color: #007700">( new </span><span style="color: #0000BB">QuickHashIntStringHash</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">( new </span><span style="color: #0000BB">QuickHashIntStringHash</span><span style="color: #007700">( </span><span style="color: #0000BB">1024</span><span style="color: #007700">, </span><span style="color: #0000BB">QuickHashIntStringHash</span><span style="color: #007700">::</span><span style="color: #0000BB">CHECK_FOR_DUPES </span><span style="color: #007700">) );<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(<br />    new </span><span style="color: #0000BB">QuickHashIntStringHash</span><span style="color: #007700">(<br />        </span><span style="color: #0000BB">1024</span><span style="color: #007700">,<br />        </span><span style="color: #0000BB">QuickHashIntStringHash</span><span style="color: #007700">::</span><span style="color: #0000BB">DO_NOT_USE_ZEND_ALLOC </span><span style="color: #007700">| </span><span style="color: #0000BB">QuickHashIntStringHash</span><span style="color: #007700">::</span><span style="color: #0000BB">HASHER_JENKINS2<br />    </span><span style="color: #007700">)<br />);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
   </div>

  </div>
 </div>



</div><?php manual_footer($setup); ?>