<?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.set.php', 1 => 'QuickHashIntStringHash::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.quickhashintstringhash.php', 1 => 'QuickHashIntStringHash', ), 'prev' => array ( 0 => 'quickhashintstringhash.savetostring.php', 1 => 'QuickHashIntStringHash::saveToString', ), 'next' => array ( 0 => 'quickhashintstringhash.update.php', 1 => 'QuickHashIntStringHash::update', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/quickhash/quickhashintstringhash/set.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?> <div id="quickhashintstringhash.set" class="refentry"> <div class="refnamediv"> <h1 class="refname">QuickHashIntStringHash::set</h1> <p class="verinfo">(PECL quickhash >= Unknown)</p><p class="refpurpose"><span class="refname">QuickHashIntStringHash::set</span> — <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't exist</span></p> </div> <div class="refsect1 description" id="refsect1-quickhashintstringhash.set-description"> <h3 class="title">Beschreibung</h3> <div class="methodsynopsis dc-description"> <span class="modifier">public</span> <span class="methodname"><strong>QuickHashIntStringHash::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.string.php" class="type string">string</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="para rdfs-comment"> 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 QuickHashIntStringHash::CHECK_FOR_DUPES during hash creation to prevent duplicate keys from being part of the hash. </p> </div> <div class="refsect1 parameters" id="refsect1-quickhashintstringhash.set-parameters"> <h3 class="title">Parameter-Liste</h3> <p class="para"> <dl> <dt><code class="parameter">key</code></dt> <dd> <p class="para"> The key of the entry to add or update. </p> </dd> <dt><code class="parameter">value</code></dt> <dd> <p class="para"> The value of the entry to add. If a non-string is passed, it will be converted to a string automatically if possible. </p> </dd> </dl> </p> </div> <div class="refsect1 returnvalues" id="refsect1-quickhashintstringhash.set-returnvalues"> <h3 class="title">Rückgabewerte</h3> <p class="para"> 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-quickhashintstringhash.set-examples"> <h3 class="title">Beispiele</h3> <p class="para"> <div class="example" id="example-5460"> <p><strong>Beispiel #1 <span class="function"><strong>QuickHashIntStringHash::set()</strong></span> example</strong></p> <div class="example-contents"> <div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB"><?php<br />$hash </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 /><br />echo </span><span style="color: #DD0000">"Set->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">-></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">-></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: #DD0000">"sixteen thousand ninety one" </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">-></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">"Set->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">-></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: #DD0000">"twenty nine thousand nine hundred six" </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">-></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">?></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->Add bool(false) int(2) string(27) "sixteen thousand ninety one" Set->Update int(1) string(37) "twenty nine thousand nine hundred six"</pre> </div> </div> </div> </p> </div> </div><?php manual_footer($setup); ?>