Query: chroot
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CHROOT(3) 1 CHROOT(3) chroot - Change the root directorySYNOPSISbool chroot (string $directory)DESCRIPTIONChanges the root directory of the current process to $directory, and changes the current working directory to "/". 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.PARAMETERSo $directory - The path to change the root directory to.RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 chroot(3) example <?php chroot("/path/to/your/chroot/"); echo getcwd(); ?> The above example will output: /NOTESNote This function is not implemented on Windows platforms. PHP Documentation Group CHROOT(3)
Related Man Pages |
---|
chroot(8) - mojave |
chroot(1) - suse |
chroot(2) - suse |
chroot(8) - netbsd |
chroot(2) - osx |
Similar Topics in the Unix Linux Community |
---|
Restricting access |
how do U restrict a user to a single directory? |
tar xvf to a different directory? |
Chroot jail environment puzzle |
Sftp server/chrooted trying to limit user permissions |