Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > 2b917e0437961edec048f1d15e2d7449 > files > 11478

php-manual-en-7.2.11-1.mga7.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>Updates a value in the vector</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="pht-vector.unshift.html">pht\Vector::unshift</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="class.pht-queue.html">pht\Queue</a></div>
 <div class="up"><a href="class.pht-vector.html">pht\Vector</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="pht-vector.updateAt" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">pht\Vector::updateAt</h1>
  <p class="verinfo">(PECL pht &gt;= 0.0.1)</p><p class="refpurpose"><span class="refname">pht\Vector::updateAt</span> &mdash; <span class="dc-title">Updates a value in the vector</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-pht-vector.updateAt-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="type"><span class="type void">void</span></span> <span class="methodname"><strong>pht\Vector::updateAt</strong></span>
    ( <span class="methodparam"><span class="type"><a href="language.pseudo-types.html#language.types.mixed" class="type mixed">mixed</a></span> <code class="parameter">$value</code></span>
   , <span class="methodparam"><span class="type">int</span> <code class="parameter">$offset</code></span>
   )</div>

  <p class="para rdfs-comment">
   This method updates a value at the specified offset in the vector (in linear
   time). The vector will automatically be resized if it is not large enough.
  </p>
  <p class="para">
   Since the <a href="class.pht-vector.html" class="classname">pht\Vector</a> class supports array access,
   updating values can also be performed using the array subset notation
   (<em>[]</em>).
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-pht-vector.updateAt-parameters">
  <h3 class="title">Parameters</h3>
  <dl>

   
    <dt>
<code class="parameter">value</code></dt>

    <dd>

     <p class="para">
      The value to be inserted into the vector. This value will be serialised
      (since it may be passed around between threads).
     </p>
    </dd>

   
   
    <dt>
<code class="parameter">offset</code></dt>

    <dd>

     <p class="para">
      The offset at which the value will be updated at. This offset must be
      within the 0..(N-1) range (inclusive), where N is the size of the vector.
      Attempting to update at offsets outside of this range will result in an
      <a href="class.error.html" class="classname">Error</a> exception.
     </p>
    </dd>

   
  </dl>

 </div>


 <div class="refsect1 returnvalues" id="refsect1-pht-vector.updateAt-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   No return value.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-pht-vector.updateAt-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-4566">
    <p><strong>Example #1 Updating a value in a vector</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #007700">use&nbsp;</span><span style="color: #0000BB">pht</span><span style="color: #007700">\</span><span style="color: #0000BB">Vector</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">$vector&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">Vector</span><span style="color: #007700">();<br /><br /></span><span style="color: #0000BB">$vector</span><span style="color: #007700">[]&nbsp;=&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$vector</span><span style="color: #007700">[]&nbsp;=&nbsp;</span><span style="color: #0000BB">2</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">$vector</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">updateAt</span><span style="color: #007700">(</span><span style="color: #0000BB">3</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$vector</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">4</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$vector</span><span style="color: #007700">);</span>
</span>
</code></div>
    </div>

    <div class="example-contents"><p>The above example will output:</p></div>
    <div class="example-contents screen">
<div class="cdata"><pre>
object(pht\Vector)#1 (2) {
  [0]=&gt;
  int(3)
  [1]=&gt;
  int(4)
}
</pre></div>
    </div>
   </div>
  </p>
 </div>

</div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="pht-vector.unshift.html">pht\Vector::unshift</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="class.pht-queue.html">pht\Queue</a></div>
 <div class="up"><a href="class.pht-vector.html">pht\Vector</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>