<?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.chroot.php',
    1 => 'chroot',
    2 => 'Change the root directory',
  ),
  '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' => '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">Опис</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">Параметри</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">Значення, що повертаються</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> 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>Поданий вище приклад
виведе:</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">Ця функція не доступна в
інтерпретаторі PHP, зібраному з увімкненою ZTS (Безпека потоку Zend). Щоб
перевірити, чи увімкнена 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); ?>