<?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 => 'uk',
  ),
  'this' => 
  array (
    0 => 'function.getcwd.php',
    1 => 'getcwd',
    2 => 'Gets the current working directory',
  ),
  'up' => 
  array (
    0 => 'ref.dir.php',
    1 => 'Функції для роботи з теками',
  ),
  'prev' => 
  array (
    0 => 'function.dir.php',
    1 => 'dir',
  ),
  'next' => 
  array (
    0 => 'function.opendir.php',
    1 => 'opendir',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    '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">Gets the current working directory</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.getcwd-description">
  <h3 class="title">Опис</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">
   Gets the current working directory.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.getcwd-parameters">
  <h3 class="title">Параметри</h3>
  <p class="para">У цієї функції немає
параметрів.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.getcwd-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   Returns the current working directory on success, or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on
   failure.
  </p> 
  <p class="para">
   On some Unix variants, <span class="function"><strong>getcwd()</strong></span> will return
   <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> if any one of the parent directories does not have the
   readable or search mode set, even if the current directory
   does. See <span class="function"><a href="function.chmod.php" class="function">chmod()</a></span> for more information on
   modes and permissions.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.getcwd-examples">
  <h3 class="title">Приклади</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Приклад #1 <span class="function"><strong>getcwd()</strong></span> example</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">// current directory<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">// current directory<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>Поданий вище приклад виведе щось
схоже на:</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">Примітки</h3>
  <div class="caution"><strong class="caution">Застереження</strong>
   <p class="para">
    If the PHP interpreter has been built with ZTS (Zend Thread Safety) enabled,
    the current working directory returned by <span class="function"><strong>getcwd()</strong></span>
    may be different from that returned by operating system interfaces.
    External libraries (invoked through <a href="book.ffi.php" class="link">FFI</a>)
    which depend on the current working directory will be affected.
   </p>
  </div>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.getcwd-seealso">
  <h3 class="title">Прогляньте також</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.chdir.php" class="function" rel="rdfs-seeAlso">chdir()</a> - Change directory</span></li>
    <li><span class="function"><a href="function.chmod.php" class="function" rel="rdfs-seeAlso">chmod()</a> - Changes file mode</span></li>
   </ul>
  </p>
 </div>

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