<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.session.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'session.constants.php',
    1 => 'Vordefinierte Konstanten',
    2 => 'Vordefinierte Konstanten',
  ),
  'up' => 
  array (
    0 => 'book.session.php',
    1 => 'Sessions',
  ),
  'prev' => 
  array (
    0 => 'session.configuration.php',
    1 => 'Laufzeit-Konfiguration',
  ),
  'next' => 
  array (
    0 => 'session.examples.php',
    1 => 'Beispiele',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/session/constants.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="session.constants" class="appendix">
 <h1 class="title">Vordefinierte Konstanten</h1>

 <p class="simpara">Folgende Konstanten werden von dieser
Erweiterung definiert und stehen nur zur Verfügung, wenn die Erweiterung entweder
statisch in PHP kompiliert oder dynamisch zur Laufzeit geladen
wurde.</p>
 <dl>
  
   <dt id="constant.sid">
    <strong><code><a href="session.constants.php#constant.sid">SID</a></code></strong>
    (<span class="type"><a href="language.types.string.php" class="type string">string</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Eine Konstante, die entweder den Namen und die ID der Session in der Form
     <code class="literal">&quot;name=ID&quot;</code> enthält oder eine leere Zeichenkette, falls
     die Session-ID in einem entsprechenden Cookie gesetzt wurde. Es ist
     dieselbe ID, die auch von <span class="function"><a href="function.session-id.php" class="function">session_id()</a></span> zurückgegeben
     wird.
    </span>
   </dd>
  
  
   <dt id="constant.php-session-disabled">
    <strong><code><a href="session.constants.php#constant.php-session-disabled">PHP_SESSION_DISABLED</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Der Rückgabewert von <span class="function"><a href="function.session-status.php" class="function">session_status()</a></span>, falls Sessions
     deaktiviert sind.
    </span>
   </dd>
  
  
   <dt id="constant.php-session-none">
    <strong><code><a href="session.constants.php#constant.php-session-none">PHP_SESSION_NONE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Der Rückgabewert von <span class="function"><a href="function.session-status.php" class="function">session_status()</a></span>, falls Sessions
     aktiviert sind, aber keine Session existiert.
    </span>
   </dd>
  
  
   <dt id="constant.php-session-active">
    <strong><code><a href="session.constants.php#constant.php-session-active">PHP_SESSION_ACTIVE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Der Rückgabewert von <span class="function"><a href="function.session-status.php" class="function">session_status()</a></span>, falls Sessions
     aktiviert sind und eine Session existiert.
    </span>
   </dd>
  
 </dl>
</div>
<?php manual_footer($setup); ?>