chroot
chroot
(PHP 4 >= 4.0.5, PHP 5, PHP 7)
chroot - 更改根目录
Description
bool chroot ( string $directory )
将当前进程的根目录更改为directory
,并将当前工作目录更改为“/”。
此功能仅适用于GNU和BSD系统,并且只能在使用CLI,CGI或嵌入SAPI时使用。而且,这个功能需要root权限。
Parameters
directory
将根目录更改为的路径。
Return Values
返回TRUE
时成功或FALSE
失败。
Examples
Example #1 chroot() example
<?php
chroot("/path/to/your/chroot/"
echo getcwd(
?>
上面的例子将输出:
/
Notes
注意
:此功能在Windows平台上未实现。
← chdir
closedir →
© 1997–2017 The PHP Documentation Group
根据知识共享署名许可证v3.0或更高版本授权。