<?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 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.compact.php',
    1 => 'compact',
    2 => 'Erstellt ein Array mit Variablen und deren Werten',
  ),
  'up' => 
  array (
    0 => 'ref.array.php',
    1 => 'Array Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.asort.php',
    1 => 'asort',
  ),
  'next' => 
  array (
    0 => 'function.count.php',
    1 => 'count',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    '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">Erstellt ein Array mit Variablen und deren Werten</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.compact-description">
  <h3 class="title">Beschreibung</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">
   Erstellt ein Array mit Variablen und deren Werten.
  </p>
  <p class="para">
   Für jede dieser Variablen sucht <span class="function"><strong>compact()</strong></span> nach einer
   Variablen in der aktuellen
   <a href="features.gc.refcounting-basics.php" class="link">Symboltabelle</a> und
   fügt diese dem zurückzugebenden Array hinzu, wobei der Variablenname als
   Schlüssel und der Inhalt der Variablen als Wert gespeichert wird. Kurz
   gesagt, diese Funktion tut das Gegenteil von <span class="function"><a href="function.extract.php" class="function">extract()</a></span>.
  </p>
  <blockquote class="note"><p><strong class="note">Hinweis</strong>: 
   <p class="para">
    Vor PHP 7.3 wurden Strings, welche nicht gesetzt sind, stillschweigend
    ignoriert.
   </p>
  </p></blockquote>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.compact-parameters">
  <h3 class="title">Parameter-Liste</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> übernimmt eine variable Anzahl von
       Parametern. Jeder Parameter kann entweder ein String mit einem
       Variablennamen, oder ein Array mit Variablennamen sein. Dieses Array
       kann auch andere Arrays mit Variablennamen enthalten;
       <span class="function"><strong>compact()</strong></span> behandelt sie rekursiv.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.compact-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Gibt ein Array mit allen Variablen zurück.
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-function.compact-errors">
  <h3 class="title">Fehler/Exceptions</h3>
  <p class="para">
   <span class="function"><strong>compact()</strong></span> erzeugt eine Fehlermeldung der Stufe
   <strong><code><a href="errorfunc.constants.php#constant.e-warning">E_WARNING</a></code></strong>, wenn sich ein gegebener String auf eine
   nicht gesetzte Variable bezieht.
  </p>
 </div>


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

    </thead>

    <tbody class="tbody">
     <tr>
      <td>8.0.0</td>
      <td>
       Wenn ein gebener String auf eine nicht gesetzte Variable verweist,
       wird nun ein Fehler der Stufe <strong><code><a href="errorfunc.constants.php#constant.e-warning">E_WARNING</a></code></strong> erzeugt.
      </td>
     </tr>

     <tr>
      <td>7.3.0</td>
      <td>
       <span class="function"><strong>compact()</strong></span> erzeugt nun eine Fehlermeldung der Stufe
       <strong><code><a href="errorfunc.constants.php#constant.e-notice">E_NOTICE</a></code></strong>, wenn sich ein gegebener String auf eine
       nicht gesetzte Variable bezieht. Zuvor wurden solche Strings
       stillschweigend ausgelassen.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-function.compact-examples">
  <h3 class="title">Beispiele</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Beispiel #1 <span class="function"><strong>compact()</strong></span>-Beispiel</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>Das oben gezeigte Beispiel erzeugt folgende Ausgabe:</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">Anmerkungen</h3>
  <blockquote class="note"><p><strong class="note">Hinweis</strong>: 
   <strong>Achtung</strong><br />
   <p class="para">
    Weil <a href="language.variables.variable.php" class="link">variable Variablen</a>
    in Funktionen nicht mit PHPs
    <a href="language.variables.superglobals.php" class="link">superglobalen Arrays</a>
    verwendet werden dürfen, können die superglobalen Arrays nicht an
    <span class="function"><strong>compact()</strong></span> übergeben werden.
   </p>
  </p></blockquote>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.compact-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.extract.php" class="function" rel="rdfs-seeAlso">extract()</a> - Importiert Variablen eines Arrays in die aktuelle Symboltabelle</span></li>
   </ul>
  </p>
 </div>


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