<?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 => 'zh', ), '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 >= Unknown)</p><p class="refpurpose"><span class="refname">QuickHashIntHash::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-quickhashinthash.set-description"> <h3 class="title">说明</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.boolean.php" class="type bool">bool</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 <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">参数</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 new value to set the entry with. </p> </dd> </dl> </p> </div> <div class="refsect1 returnvalues" id="refsect1-quickhashinthash.set-returnvalues"> <h3 class="title">返回值</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-quickhashinthash.set-examples"> <h3 class="title">示例</h3> <p class="para"> <div class="example" id="example-5411"> <p><strong>示例 #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"><?php<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->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: #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">-></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: #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">-></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>以上示例的输出类似于:</p></div> <div class="example-contents screen"> <div class="examplescode"><pre class="examplescode">bool(false) int(2) int(16091) Set->Update int(1) int(29906)</pre> </div> </div> </div> </p> </div> </div><?php manual_footer($setup); ?>