<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.quickhashinthash.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'quickhashinthash.set.php',
    1 => 'QuickHashIntHash::set',
    2 => 'This method updates an entry in the hash with a new value, or
  adds a new one if the entry doesn\'t exist',
  ),
  'up' => 
  array (
    0 => 'class.quickhashinthash.php',
    1 => 'QuickHashIntHash',
  ),
  'prev' => 
  array (
    0 => 'quickhashinthash.savetostring.php',
    1 => 'QuickHashIntHash::saveToString',
  ),
  'next' => 
  array (
    0 => 'quickhashinthash.update.php',
    1 => 'QuickHashIntHash::update',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/quickhash/quickhashinthash/set.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="quickhashinthash.set" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">QuickHashIntHash::set</h1>
  <p class="verinfo">(PECL quickhash &gt;= Unknown)</p><p class="refpurpose"><span class="refname">QuickHashIntHash::set</span> &mdash; <span class="dc-title">This method updates an entry in the hash with a new value, or
  adds a new one if the entry doesn&#039;t exist</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-quickhashinthash.set-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>QuickHashIntHash::set</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$key</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$value</code></span>): <span class="type"><a href="language.types.integer.php" class="type int">int</a></span></div>

  <p class="simpara">
   This method tries to update an entry with a new value. In case the entry
   did not yet exist, it will instead add a new entry. It returns whether the
   entry was added or update. If there are duplicate keys, only the first
   found element will get an updated value. Use
   <strong><code><a href="class.quickhashinthash.php#quickhashinthash.constants.check-for-dupes">QuickHashIntHash::CHECK_FOR_DUPES</a></code></strong> during hash creation to prevent duplicate
   keys from being part of the hash.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-quickhashinthash.set-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <dl>
   
    <dt><code class="parameter">key</code></dt>
    <dd>
     <span class="simpara">
      The key of the entry to add or update.
     </span>
    </dd>
   
   
    <dt><code class="parameter">value</code></dt>
    <dd>
     <span class="simpara">
      The new value to set the entry with.
     </span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-quickhashinthash.set-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="simpara">
   2 if the entry was newly added, 1 if the entry was found and updated, or 0
   if there was an error.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-quickhashinthash.set-examples">
  <h3 class="title">Beispiele</h3>
  <div class="example" id="example-1">
   <p><strong>Beispiel #1 <span class="function"><strong>QuickHashIntHash::set()</strong></span> example</strong></p>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br />$hash </span><span style="color: #007700">= new </span><span style="color: #0000BB">QuickHashIntHash</span><span style="color: #007700">(</span><span style="color: #0000BB">1024</span><span style="color: #007700">);<br /><br />echo </span><span style="color: #DD0000">"Set-&gt;Add\n"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$hash</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">get</span><span style="color: #007700">(</span><span style="color: #0000BB">46692</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$hash</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">set</span><span style="color: #007700">(</span><span style="color: #0000BB">46692</span><span style="color: #007700">, </span><span style="color: #0000BB">16091</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$hash</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">get</span><span style="color: #007700">(</span><span style="color: #0000BB">46692</span><span style="color: #007700">));<br /><br />echo </span><span style="color: #DD0000">"\n\nSet-&gt;Update\n"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$hash</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">set</span><span style="color: #007700">(</span><span style="color: #0000BB">46692</span><span style="color: #007700">, </span><span style="color: #0000BB">29906</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$hash</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">get</span><span style="color: #007700">(</span><span style="color: #0000BB">46692</span><span style="color: #007700">));</span></span></code></div>
   </div>

   <div class="example-contents"><p>Das oben gezeigte Beispiel erzeugt
eine ähnliche Ausgabe wie:</p></div>
   <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Set-&gt;Add
bool(false)
int(2)
int(16091)

Set-&gt;Update
int(1)
int(29906)</pre>
</div>
   </div>
  </div>
 </div>



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