<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.regexiterator.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'regexiterator.setmode.php',
    1 => 'RegexIterator::setMode',
    2 => 'Sets the operation mode',
  ),
  'up' => 
  array (
    0 => 'class.regexiterator.php',
    1 => 'RegexIterator',
  ),
  'prev' => 
  array (
    0 => 'regexiterator.setflags.php',
    1 => 'RegexIterator::setFlags',
  ),
  'next' => 
  array (
    0 => 'regexiterator.setpregflags.php',
    1 => 'RegexIterator::setPregFlags',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/spl/regexiterator/setmode.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="regexiterator.setmode" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">RegexIterator::setMode</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.2.0, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">RegexIterator::setMode</span> &mdash; <span class="dc-title">Sets the operation mode</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-regexiterator.setmode-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>RegexIterator::setMode</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$mode</code></span>): <span class="type"><a href="language.types.void.php" class="type void">void</a></span></div>

  <p class="para rdfs-comment">
   Sets the operation mode.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-regexiterator.setmode-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">mode</code></dt>
     <dd>
      <p class="para">
       The operation mode.
      </p>
      <p class="para">
       The available modes are listed below. The actual
       meanings of these modes are described in the
       <a href="class.regexiterator.php#regexiterator.constants" class="link">predefined constants</a>.
       <table class="doctable table">
        <caption><strong><span class="classname"><a href="class.regexiterator.php" class="classname">RegexIterator</a></span> modes</strong></caption>
        
         <thead>
          <tr>
           <th>value</th>
           <th>constant</th>
          </tr>

         </thead>

         <tbody class="tbody">
          <tr>
           <td>0</td>
           <td>
            <a href="class.regexiterator.php#regexiterator.constants.match" class="link">RegexIterator::MATCH</a>
           </td>
          </tr>

          <tr>
           <td>1</td>
           <td>
            <a href="class.regexiterator.php#regexiterator.constants.get-match" class="link">RegexIterator::GET_MATCH</a>
           </td>
          </tr>

          <tr>
           <td>2</td>
           <td>
            <a href="class.regexiterator.php#regexiterator.constants.all-matches" class="link">RegexIterator::ALL_MATCHES</a>
           </td>
          </tr>

          <tr>
           <td>3</td>
           <td>
            <a href="class.regexiterator.php#regexiterator.constants.split" class="link">RegexIterator::SPLIT</a>
           </td>
          </tr>

          <tr>
           <td>4</td>
           <td>
            <a href="class.regexiterator.php#regexiterator.constants.replace" class="link">RegexIterator::REPLACE</a>
           </td>
          </tr>

         </tbody>
        
       </table>

      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-regexiterator.setmode-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   Nessun valore viene restituito.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-regexiterator.setmode-examples">
  <h3 class="title">Esempi</h3>
  <p class="para">
   <div class="example" id="regexiterator.setmode.example.basic">
    <p><strong>Example #1 <span class="methodname"><strong>RegexIterator::setMode()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$test </span><span style="color: #007700">= array (</span><span style="color: #DD0000">'str1' </span><span style="color: #007700">=&gt; </span><span style="color: #DD0000">'test 1'</span><span style="color: #007700">, </span><span style="color: #DD0000">'test str2' </span><span style="color: #007700">=&gt; </span><span style="color: #DD0000">'another test'</span><span style="color: #007700">, </span><span style="color: #DD0000">'str3' </span><span style="color: #007700">=&gt; </span><span style="color: #DD0000">'test 123'</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$arrayIterator </span><span style="color: #007700">= new </span><span style="color: #0000BB">ArrayIterator</span><span style="color: #007700">(</span><span style="color: #0000BB">$test</span><span style="color: #007700">);<br /></span><span style="color: #FF8000">// Filter everything that starts with 'test ' followed by one or more numbers.<br /></span><span style="color: #0000BB">$regexIterator </span><span style="color: #007700">= new </span><span style="color: #0000BB">RegexIterator</span><span style="color: #007700">(</span><span style="color: #0000BB">$arrayIterator</span><span style="color: #007700">, </span><span style="color: #DD0000">'/^test (\d+)/'</span><span style="color: #007700">);<br /></span><span style="color: #FF8000">// Operation mode: Replace actual value with the matches<br /></span><span style="color: #0000BB">$regexIterator</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">setMode</span><span style="color: #007700">(</span><span style="color: #0000BB">RegexIterator</span><span style="color: #007700">::</span><span style="color: #0000BB">GET_MATCH</span><span style="color: #007700">);<br /><br />foreach (</span><span style="color: #0000BB">$regexIterator </span><span style="color: #007700">as </span><span style="color: #0000BB">$key </span><span style="color: #007700">=&gt; </span><span style="color: #0000BB">$value</span><span style="color: #007700">) {<br />    </span><span style="color: #FF8000">// print out the matched number(s)<br />    </span><span style="color: #007700">echo </span><span style="color: #0000BB">$key </span><span style="color: #007700">. </span><span style="color: #DD0000">' =&gt; ' </span><span style="color: #007700">. </span><span style="color: #0000BB">$value</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">] . </span><span style="color: #0000BB">PHP_EOL</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>Il precedente esempio visualizzerà
qualcosa simile a:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">str1 =&gt; 1
str3 =&gt; 123</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-regexiterator.setmode-seealso">
  <h3 class="title">Vedere anche:</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="methodname"><a href="regexiterator.getmode.php" class="methodname" rel="rdfs-seeAlso">RegexIterator::getMode()</a> - Returns operation mode</span></li>
   </ul>
  </p>
 </div>

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