<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.posix.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'zh',
  ),
  'this' => 
  array (
    0 => 'function.posix-getcwd.php',
    1 => 'posix_getcwd',
    2 => 'Pathname of current directory',
  ),
  'up' => 
  array (
    0 => 'ref.posix.php',
    1 => 'POSIX 函数',
  ),
  'prev' => 
  array (
    0 => 'function.posix-get-last-error.php',
    1 => 'posix_get_last_error',
  ),
  'next' => 
  array (
    0 => 'function.posix-getegid.php',
    1 => 'posix_getegid',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/posix/functions/posix-getcwd.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.posix-getcwd" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">posix_getcwd</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">posix_getcwd</span> &mdash; <span class="dc-title">Pathname of current directory</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.posix-getcwd-description">
  <h3 class="title">说明</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>posix_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 absolute pathname of the script&#039;s current working directory.
   On error, it sets errno which can be checked using
   <span class="function"><a href="function.posix-get-last-error.php" class="function">posix_get_last_error()</a></span>
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.posix-getcwd-parameters">
  <h3 class="title">参数</h3>
  <p class="para">此函数没有参数。</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.posix-getcwd-returnvalues">
  <h3 class="title">返回值</h3>
  <p class="para">
   Returns a <span class="type"><a href="language.types.string.php" class="type string">string</a></span> of the absolute pathname on success.  
   On error, returns <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> and sets errno which can be checked with
   <span class="function"><a href="function.posix-get-last-error.php" class="function">posix_get_last_error()</a></span>.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.posix-getcwd-examples">
  <h3 class="title">示例</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>示例 #1 <span class="function"><strong>posix_getcwd()</strong></span> example</strong></p>
    <div class="example-contents"><p>
     This example will return the absolute path of the current working 
     directory of the script.
    </p></div>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">echo </span><span style="color: #DD0000">'My current working directory is '</span><span style="color: #007700">.</span><span style="color: #0000BB">posix_getcwd</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>
  </p>
 </div>

 
 <div class="refsect1 notes" id="refsect1-function.posix-getcwd-notes">
  <h3 class="title">注释</h3>
  <blockquote class="note"><p><strong class="note">注意</strong>: 
   <p class="para">
    This function can fail on
    <ul class="itemizedlist">
     <li class="listitem">
      <span class="simpara">Read or Search permission was denied</span>
     </li>
     <li class="listitem">
      <span class="simpara">Pathname no longer exists</span>
     </li>
    </ul> 
   </p>
  </p></blockquote>
 </div>


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