PHP chroot() 函数
PHP chroot() 函数改变当前进程的根目录为 directory ,并把当前工作目录改为 "/"
(php4,php5,php7)
该函数需要 root 权限
仅在 GNU 和 BSD 系统上仅当使用 CLI、CGI、嵌入式 SAPI 时可用
该函数没有在 Windows 平台上实现
函数原型
chroot( **directory** );
参数
参数 | 描述 |
---|---|
directory | 必需。规定新的根目录路径 |
返回值
成功则返回 TRUE,失败则返回 FALSE
范例
改变根目录
<?php // Change root directory chroot("/path/to/chroot/"); // Get current directory echo getcwd();
运行以上 PHP 范例,输出结果如下
/