<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.splfixedarray.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'splfixedarray.fromarray.php',
    1 => 'SplFixedArray::fromArray',
    2 => 'Import a PHP array in a SplFixedArray instance',
  ),
  'up' => 
  array (
    0 => 'class.splfixedarray.php',
    1 => 'SplFixedArray',
  ),
  'prev' => 
  array (
    0 => 'splfixedarray.current.php',
    1 => 'SplFixedArray::current',
  ),
  'next' => 
  array (
    0 => 'splfixedarray.getiterator.php',
    1 => 'SplFixedArray::getIterator',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/spl/splfixedarray/fromarray.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="splfixedarray.fromarray" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">SplFixedArray::fromArray</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">SplFixedArray::fromArray</span> &mdash; <span class="dc-title">Import a PHP array in a <span class="classname"><a href="class.splfixedarray.php" class="classname">SplFixedArray</a></span> instance</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-splfixedarray.fromarray-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="modifier">static</span> <span class="methodname"><strong>SplFixedArray::fromArray</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.array.php" class="type array">array</a></span> <code class="parameter">$array</code></span>, <span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$preserveKeys</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong></span></span>): <span class="type"><a href="class.splfixedarray.php" class="type SplFixedArray">SplFixedArray</a></span></div>

  <p class="para rdfs-comment">
   Import the PHP array <code class="parameter">array</code> 
   in a new <span class="classname"><a href="class.splfixedarray.php" class="classname">SplFixedArray</a></span> instance
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-splfixedarray.fromarray-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">array</code></dt>
     <dd>
      <p class="para">
       The array to import.
      </p>
     </dd>
    
    
     <dt><code class="parameter">preserveKeys</code></dt>
     <dd>
      <p class="para">
       Try to save the numeric indexes used in the original array. 
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-splfixedarray.fromarray-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   Returns an instance of <span class="classname"><a href="class.splfixedarray.php" class="classname">SplFixedArray</a></span> 
   containing the array content.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-splfixedarray.fromarray-examples">
  <h3 class="title">Esempi</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Example #1 <span class="function"><strong>SplFixedArray::fromArray()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$fa </span><span style="color: #007700">= </span><span style="color: #0000BB">SplFixedArray</span><span style="color: #007700">::</span><span style="color: #0000BB">fromArray</span><span style="color: #007700">(array(</span><span style="color: #0000BB">1 </span><span style="color: #007700">=&gt; </span><span style="color: #0000BB">1</span><span style="color: #007700">, </span><span style="color: #0000BB">0 </span><span style="color: #007700">=&gt; </span><span style="color: #0000BB">2</span><span style="color: #007700">, </span><span style="color: #0000BB">3 </span><span style="color: #007700">=&gt; </span><span style="color: #0000BB">3</span><span style="color: #007700">));<br /><br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$fa</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$fa </span><span style="color: #007700">= </span><span style="color: #0000BB">SplFixedArray</span><span style="color: #007700">::</span><span style="color: #0000BB">fromArray</span><span style="color: #007700">(array(</span><span style="color: #0000BB">1 </span><span style="color: #007700">=&gt; </span><span style="color: #0000BB">1</span><span style="color: #007700">, </span><span style="color: #0000BB">0 </span><span style="color: #007700">=&gt; </span><span style="color: #0000BB">2</span><span style="color: #007700">, </span><span style="color: #0000BB">3 </span><span style="color: #007700">=&gt; </span><span style="color: #0000BB">3</span><span style="color: #007700">), </span><span style="color: #0000BB">false</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$fa</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>Il precedente esempio visualizzerà:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">object(SplFixedArray)#1 (4) {
  [0]=&gt;
  int(2)
  [1]=&gt;
  int(1)
  [2]=&gt;
  NULL
  [3]=&gt;
  int(3)
}
object(SplFixedArray)#2 (3) {
  [0]=&gt;
  int(1)
  [1]=&gt;
  int(2)
  [2]=&gt;
  int(3)
}</pre>
</div>
    </div>
   </div>
  </p>
 </div>


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