<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.array.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'fr',
  ),
  'this' => 
  array (
    0 => 'function.compact.php',
    1 => 'compact',
    2 => 'Cr&eacute;e un tableau &agrave; partir de variables et de leur valeur',
  ),
  'up' => 
  array (
    0 => 'ref.array.php',
    1 => 'Fonctions sur les tableaux',
  ),
  'prev' => 
  array (
    0 => 'function.asort.php',
    1 => 'asort',
  ),
  'next' => 
  array (
    0 => 'function.count.php',
    1 => 'count',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'fr',
    'path' => 'reference/array/functions/compact.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.compact" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">compact</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">compact</span> &mdash; <span class="dc-title">Crée un tableau à partir de variables et de leur valeur</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.compact-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>compact</strong></span>(<span class="methodparam"><span class="type"><span class="type"><a href="language.types.array.php" class="type array">array</a></span>|<span class="type"><a href="language.types.string.php" class="type string">string</a></span></span> <code class="parameter">$var_name</code></span>, <span class="methodparam"><span class="type"><span class="type"><a href="language.types.array.php" class="type array">array</a></span>|<span class="type"><a href="language.types.string.php" class="type string">string</a></span></span> <code class="parameter">...$var_names</code></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   Crée un tableau à partir de variables et de leur valeur.
  </p>
  <p class="para">
   Pour chacun des arguments <code class="parameter">varname</code>, <code class="parameter">...</code>,
   <span class="function"><strong>compact()</strong></span> recherche une variable
   avec un même nom dans la
   <a href="features.gc.refcounting-basics.php" class="link">table courante des symboles</a>, et
   l&#039;ajoute dans le tableau, de manière à avoir la relation nom =&gt;
   &#039;valeur de variable&#039;. En bref, c&#039;est le contraire de la fonction
   <span class="function"><a href="function.extract.php" class="function">extract()</a></span>.
  </p>
  <blockquote class="note"><p><strong class="note">Note</strong>: 
   <p class="para">
    Avant PHP 7.3, toutes les chaînes qui ne sont pas définies étaient ignorées en silence.
   </p>
  </p></blockquote>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.compact-parameters">
  <h3 class="title">Liste de paramètres</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">var_name</code></dt>
     <dt><code class="parameter">var_names</code></dt>
     <dd>
      <p class="para">
       <span class="function"><strong>compact()</strong></span> accepte différents paramètres <code class="parameter">varname</code>. 
       Les paramètres peuvent être des variables contenant des chaînes,
       ou un tableau de chaînes, qui peut contenir d&#039;autres tableaux de noms de
       variables, que <span class="function"><strong>compact()</strong></span> traitera récursivement.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.compact-returnvalues">
  <h3 class="title">Valeurs de retour</h3>
  <p class="para">
   Retourne le tableau de sortie contenant toutes les variables ajoutées.
  </p>
 </div>

 
 <div class="refsect1 errors" id="refsect1-function.compact-errors">
  <h3 class="title">Erreurs / Exceptions</h3>
  <p class="para">
   <span class="function"><strong>compact()</strong></span> émet une erreur de niveau <strong><code><a href="errorfunc.constants.php#constant.e-warning">E_WARNING</a></code></strong> si une 
   chaîne donnée fait référence à une variable non définie.
  </p>
 </div>

 
 <div class="refsect1 changelog" id="refsect1-function.compact-changelog">
  <h3 class="title">Historique</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Version</th>
      <th>Description</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>8.0.0</td>
      <td>
       Si une chaîne donnée fait référence à une variable non définie, une erreur de niveau <strong><code><a href="errorfunc.constants.php#constant.e-warning">E_WARNING</a></code></strong> est désormais émise.
      </td>
     </tr>

     <tr>
      <td>7.3.0</td>
      <td>
       <span class="function"><strong>compact()</strong></span> émet maintenant une erreur de niveau <strong><code><a href="errorfunc.constants.php#constant.e-notice">E_NOTICE</a></code></strong> 
       si une chaîne donnée fait référence à une variable non définie. Autrefois, 
       ces chaînes ont été silencieusement ignorées.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>

 
 <div class="refsect1 examples" id="refsect1-function.compact-examples">
  <h3 class="title">Exemples</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Exemple #1 Exemple avec <span class="function"><strong>compact()</strong></span></strong></p>
    <div class="example-contents">
<div class="annotation-interactive phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br />$city  </span><span style="color: #007700">= </span><span style="color: #DD0000">"San Francisco"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$state </span><span style="color: #007700">= </span><span style="color: #DD0000">"CA"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$event </span><span style="color: #007700">= </span><span style="color: #DD0000">"SIGGRAPH"</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">$location_vars </span><span style="color: #007700">= array(</span><span style="color: #DD0000">"city"</span><span style="color: #007700">, </span><span style="color: #DD0000">"state"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$result </span><span style="color: #007700">= </span><span style="color: #0000BB">compact</span><span style="color: #007700">(</span><span style="color: #DD0000">"event"</span><span style="color: #007700">, </span><span style="color: #0000BB">$location_vars</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$result</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>L&#039;exemple ci-dessus va afficher :</p></div>
    <div class="example-contents screen">
<div class="annotation-interactive examplescode"><pre class="examplescode">Array
(
    [event] =&gt; SIGGRAPH
    [city] =&gt; San Francisco
    [state] =&gt; CA
)</pre>
</div>
    </div>
   </div>
  </p>
 </div>

 <div class="refsect1 notes" id="refsect1-function.compact-notes">
  <h3 class="title">Notes</h3>
  <blockquote class="note"><p><strong class="note">Note</strong>: 
   <strong>Erreur commune</strong><br />
   <p class="para">
    Parce que les <a href="language.variables.variable.php" class="link">variables
    variables</a> ne doivent pas être utilisées avec les
    <a href="language.variables.superglobals.php" class="link">tableaux superglobaux</a>
    dans des fonctions, les tableaux Superglobaux ne doivent pas être passés
    dans la fonction <span class="function"><strong>compact()</strong></span>.
   </p>
  </p></blockquote>
 </div>

 <div class="refsect1 seealso" id="refsect1-function.compact-seealso">
  <h3 class="title">Voir aussi</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.extract.php" class="function" rel="rdfs-seeAlso">extract()</a> - Importe les variables dans la table des symboles</span></li>
   </ul>
  </p>
 </div>

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