Open In App

PHP | chroot( ) Function

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.

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

Article Tags :