Skip to content
Related Articles
Open in App
Not now

Related Articles

PHP | chroot( ) Function

Improve Article
Save Article
  • Last Updated : 11 Jul, 2018
Improve Article
Save Article

The chroot() function in PHP is an inbuilt function which is used to change the root directory of the current process to directory. The chroot() function changes the current working directory to “/”. The chroot() function is only available to GNU and BSD systems, and only when the user is using the CLI, CGI or Embed SAPI. Apart from this the chroot() function also requires root privileges for functioning.

Syntax:

chroot($directory)

Parameters Used: The chroot() function in PHP accepts only one parameter as described below.

  • $directory: It is a mandatory parameter which specifies the new path to which the root directory has to be changed.

Return Value: It returns True on success and False on failure.

Errors And Exceptions:

  1. The chroot() function is not available on windows platforms yet.
  2. Apart from GNU and BSD, the chroot() function is also available on SVR4 platforms.

Below programs illustrate the chroot() function:

Program 1:




<?php
  
// Changing root directory
chroot("/path/gfg/chroot/");
  
// displaying current directory
echo getcwd();
?>


Output:

/

Program 2:




<?php
// Changing root directory
$flag = chroot("path/gfg/chroot/");
if($flag == true) 
   echo("Root Directory Has Been Successfully Changed");
else 
{
   echo("Root Directory Cannot Be Changed");
?>


Output:

Root Directory Has Been Successfully Changed

Reference : http://php.net/manual/en/function.chroot.php

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!