<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.quickhashstringinthash.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'quickhashstringinthash.set.php',
    1 => 'QuickHashStringIntHash::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.quickhashstringinthash.php',
    1 => 'QuickHashStringIntHash',
  ),
  'prev' => 
  array (
    0 => 'quickhashstringinthash.savetostring.php',
    1 => 'QuickHashStringIntHash::saveToString',
  ),
  'next' => 
  array (
    0 => 'quickhashstringinthash.update.php',
    1 => 'QuickHashStringIntHash::update',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/quickhash/quickhashstringinthash/set.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="quickhashstringinthash.set" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">QuickHashStringIntHash::set</h1>
  <p class="verinfo">(No version information available, might only be in Git)</p><p class="refpurpose"><span class="refname">QuickHashStringIntHash::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-quickhashstringinthash.set-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>QuickHashStringIntHash::set</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</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
   QuickHashStringIntHash::CHECK_FOR_DUPES during hash creation to prevent duplicate
   keys from being part of the hash.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-quickhashstringinthash.set-parameters">
  <h3 class="title">Parameters</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 value of the entry to add. If a non-string is passed, it will be
      converted to a string automatically if possible.
     </span>
    </dd>
   
  </dl>
 </div>


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


 <div class="refsect1 examples" id="refsect1-quickhashstringinthash.set-examples">
  <h3 class="title">Examples</h3>
  <div class="example" id="example-1">
   <p><strong>Example #1 <span class="function"><strong>QuickHashStringIntHash::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 />$hash </span><span style="color: #007700">= new </span><span style="color: #0000BB">QuickHashStringIntHash</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: #DD0000">"forty six thousand six hundred ninety two" </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: #DD0000">"forty six thousand six hundred ninety two"</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: #DD0000">"forty six thousand six hundred ninety two" </span><span style="color: #007700">) );<br /><br />echo </span><span style="color: #DD0000">"Set-&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: #DD0000">"forty six thousand six hundred ninety two"</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: #DD0000">"forty six thousand six hundred ninety two" </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="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); ?>