<?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 => 'ja',
  ),
  'this' => 
  array (
    0 => 'function.getcwd.php',
    1 => 'getcwd',
    2 => 'カレントのワーキングディレクトリを取得する',
  ),
  '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' => 'ja',
    '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">カレントのワーキングディレクトリを取得する</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">
   カレントのワーキングディレクトリを返します。
  </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">
   成功時はカレントのワーキングディレクトリを返します。
   失敗時は <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> を返します。
  </p>
  <p class="para">
   いくつかの UNIX の派生系では、親ディレクトリが読み込めない、
   もしくは検索モードが設定されている場合、カレントディレクトリが可能だとしても
   <span class="function"><strong>getcwd()</strong></span> は <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> を返します。
   モードと権限についての詳細は、<span class="function"><a href="function.chmod.php" class="function">chmod()</a></span> を参照ください。
  </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> の例</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">// カレントディレクトリ<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">// カレントディレクトリ<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">
    PHP インタプリタが ZTS (Zend Thread Safety) を有効にしてビルドされていると、
    <span class="function"><strong>getcwd()</strong></span> 関数が返した現在のカレントディレクトリは、
    オペレーティングシステムが返すそれとは異なる可能性があります。
    この振る舞いは、カレントディレクトリに依存した
    (<a href="book.ffi.php" class="link">FFI</a> を通じて呼び出される) 外部ライブラリが影響を受けます。
   </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> - ディレクトリを変更する</span></li>
    <li><span class="function"><a href="function.chmod.php" class="function" rel="rdfs-seeAlso">chmod()</a> - ファイルのモードを変更する</span></li>
   </ul>
  </p>
 </div>

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