目录

PHP chroot() 函数

❮ PHP 目录参考

示例

更改根目录:

<?php
// Change root directory
chroot("/path/to/chroot/");

// Get current directory
echo getcwd();
?>

结果:

/


定义和用法

chroot()函数将当前进程的根目录更改为目录,并将当前工作目录更改为"/"。

笔记:此功能需要root权限,并且仅适用于GNU和BSD系统,并且仅在使用CLI、CGI或Embed SAPI时可用。

笔记:此功能在 Windows 平台上未实现。


语法

chroot( directory)

参数值

Parameter Description
directory Required. Specifies the path to change the root directory to


技术细节

返回值: 成功则为真。失败时为 FALSE。
PHP 版本: 4.0.5+

❮ PHP 目录参考