<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.dir.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.getcwd.php',
    1 => 'getcwd',
    2 => 'Ermittelt das aktuelle Arbeitsverzeichnis',
  ),
  'up' => 
  array (
    0 => 'ref.dir.php',
    1 => 'Verzeichnis-Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.dir.php',
    1 => 'dir',
  ),
  'next' => 
  array (
    0 => 'function.opendir.php',
    1 => 'opendir',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/dir/functions/getcwd.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.getcwd" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">getcwd</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">getcwd</span> &mdash; <span class="dc-title">Ermittelt das aktuelle Arbeitsverzeichnis</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.getcwd-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>getcwd</strong></span>(): <span class="type"><span class="type"><a href="language.types.string.php" class="type string">string</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   Gibt das aktuelle Arbeitsverzeichnis zurück.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.getcwd-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">Diese Funktion besitzt keine Parameter.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.getcwd-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Gibt bei Erfolg das aktuelle Arbeitsverzeichnis zurück, im Fehlerfall <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>.
  </p>
  <p class="para">
   Auf einigen Unix-Varianten gibt <span class="function"><strong>getcwd()</strong></span> <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> zurück,
   wenn eines der darüber liegenden Verzeichnisse keine Lese- oder Suchrechte
   haben, auch wenn das aktuelle Verzeichnis diese hat. Lesen Sie
   <span class="function"><a href="function.chmod.php" class="function">chmod()</a></span> für weitergehende Informationen über Modi und
   Zugriffsrechte.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.getcwd-examples">
  <h3 class="title">Beispiele</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Beispiel #1 <span class="function"><strong>getcwd()</strong></span>-Beispiel</strong></p>
     <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #FF8000">// aktuelles Verzeichnis<br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">getcwd</span><span style="color: #007700">() . </span><span style="color: #DD0000">"\n"</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">chdir</span><span style="color: #007700">(</span><span style="color: #DD0000">'cvs'</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">// aktuelles Verzeichnis<br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">getcwd</span><span style="color: #007700">() . </span><span style="color: #DD0000">"\n"</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
eine ähnliche Ausgabe wie:</p></div>
     <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">/home/didou
/home/didou/cvs</pre>
</div>
     </div>
   </div>
  </p>
 </div>


 <div class="refsect1 notes" id="refsect1-function.getcwd-notes">
  <h3 class="title">Anmerkungen</h3>
  <div class="caution"><strong class="caution">Achtung</strong>
   <p class="para">
    Wurde der PHP-Interpreter mit ZTS (Zend Thread Safety) kompiliert,
    kann sich das aktuelle Arbeitsverzeichnis, das von <span class="function"><strong>getcwd()</strong></span> zurückgegeben
    wird, von dem was von Betriebssystemschnittstellen zurückgegeben wird, unterscheiden.
    Externe Bibliotheken (die durch <a href="book.ffi.php" class="link">FFI</a> aufgerufen werden),
    die sich nach dem aktuellen Arbeitsverzeichnis richten, sind davon betroffen.
   </p>
  </div>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.getcwd-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.chdir.php" class="function" rel="rdfs-seeAlso">chdir()</a> - Wechseln des Verzeichnisses</span></li>
    <li><span class="function"><a href="function.chmod.php" class="function" rel="rdfs-seeAlso">chmod()</a> - &Auml;ndert den Modus f&uuml;r die Zugriffsrechte einer Datei</span></li>
   </ul>
  </p>
 </div>

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