<?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.chroot.php',
    1 => 'chroot',
    2 => 'ルートディレクトリを変更する',
  ),
  'up' => 
  array (
    0 => 'ref.dir.php',
    1 => 'ディレクトリ 関数',
  ),
  'prev' => 
  array (
    0 => 'function.chdir.php',
    1 => 'chdir',
  ),
  'next' => 
  array (
    0 => 'function.closedir.php',
    1 => 'closedir',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    'path' => 'reference/dir/functions/chroot.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.chroot" class="refentry">
   <div class="refnamediv">
    <h1 class="refname">chroot</h1>
    <p class="verinfo">(PHP 4 &gt;= 4.0.5, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">chroot</span> &mdash; <span class="dc-title">ルートディレクトリを変更する</span></p>

   </div>
   <div class="refsect1 unknown-19" id="refsect1-function.chroot-unknown-19">
    <h3 class="title">説明</h3>
     <div class="methodsynopsis dc-description">
      <span class="methodname"><strong>chroot</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$directory</code></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

    <p class="para rdfs-comment">
     カレントプロセスのルートディレクトリを
     <code class="parameter">directory</code> に変更し、
     作業ディレクトリを &quot;/&quot; に変更します。
    </p>
    <p class="para">
     この関数が使えるのは GNU および BSD システムのみで、
     かつ CLI, CGI, Embed SAPI を使用している場合のみです。
    </p>
    <p class="para">
     この関数をコールしても、マジック定数
     <code class="literal">__DIR__</code> と
     <code class="literal">__FILE__</code> の値は変更されません。
    </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.chroot-parameters">
  <h3 class="title">パラメータ</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">directory</code></dt>
     <dd>
      <p class="para">
       ルートディレクトリの変更先のパス。
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.chroot-returnvalues">
  <h3 class="title">戻り値</h3>
  <p class="para">
   成功した場合に <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> を、失敗した場合に <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> を返します。
  </p> 
 </div>


 <div class="refsect1 examples" id="refsect1-function.chroot-examples">
  <h3 class="title">例</h3>
  <p class="para">
   <div class="example" id="example-1"><p><strong>例1 <span class="function"><strong>chroot()</strong></span> の例</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />chroot</span><span style="color: #007700">(</span><span style="color: #DD0000">"/path/to/your/chroot/"</span><span style="color: #007700">);<br />echo </span><span style="color: #0000BB">getcwd</span><span style="color: #007700">();<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">/</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 notes" id="refsect1-function.chroot-notes">
  <h3 class="title">注意</h3>
  <blockquote class="note"><p><strong class="note">注意</strong>: <span class="simpara">この関数は Windows 環境にはまだ実装されていません。
</span></p></blockquote>
  <blockquote class="note"><p><strong class="note">注意</strong>: <span class="simpara">この関数は
ZTS (Zend Thread Safety) を有効にしてビルドした PHPインタプリタでは利用できません。あなたの PHP で ZTS が有効かどうかを調べるには、<strong class="command">php -i</strong> コマンドを使うか、ビルトイン定数<strong><code><a href="reserved.constants.php#constant.php-zts">PHP_ZTS</a></code></strong> を確認してください。</span></p></blockquote>
 </div>

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