<?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 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.chroot.php',
    1 => 'chroot',
    2 => 'Change the root directory',
  ),
  'up' => 
  array (
    0 => 'ref.dir.php',
    1 => 'Directory Functions',
  ),
  'prev' => 
  array (
    0 => 'function.chdir.php',
    1 => 'chdir',
  ),
  'next' => 
  array (
    0 => 'function.closedir.php',
    1 => 'closedir',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    '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">Change the root directory</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.chroot-description">
  <h3 class="title">Description</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">
   Changes the root directory of the current process to
   <code class="parameter">directory</code>, and changes the current
   working directory to &quot;/&quot;.
  </p>
  <p class="para">
   This function is only available to GNU and BSD systems, and
   only when using the CLI, CGI or Embed SAPI. Also, this function
   requires root privileges.
  </p>
  <p class="para">
   Calling this function does not change the values of the <code class="literal">__DIR__</code>
   and <code class="literal">__FILE__</code> magic constants.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.chroot-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">directory</code></dt>
     <dd>
      <p class="para">
       The path to change the root directory to.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.chroot-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> on success or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on failure.
  </p> 
 </div>


 <div class="refsect1 examples" id="refsect1-function.chroot-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-1"><p><strong>Example #1 <span class="function"><strong>chroot()</strong></span> example</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>The above example will output:</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">Notes</h3>
  <blockquote class="note"><p><strong class="note">Note</strong>: <span class="simpara">This function is not
implemented on Windows platforms.</span></p></blockquote>
  <blockquote class="note"><p><strong class="note">Note</strong>: <span class="simpara">This function is not
available in PHP interpreters built with ZTS (Zend Thread Safety) enabled. To check whether your copy of PHP was built with ZTS enabled, use <strong class="command">php -i</strong> or test the built-in constant <strong><code><a href="reserved.constants.php#constant.php-zts">PHP_ZTS</a></code></strong>.</span></p></blockquote>
 </div>

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