- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP chroot() 函数
实例
改变根目录:
<?php
// Change root directory
chroot("/path/to/chroot/");
// Get current directory
echo getcwd();
?>
// Change root directory
chroot("/path/to/chroot/");
// Get current directory
echo getcwd();
?>
结果:
/
定义和用法
chroot() 函数改变当前进程的根目录为 directory,并把当前工作目录改为 "/"。
注意:该函数需要 root 权限,且仅在 GNU 和 BSD 系统上仅当使用 CLI、CGI、嵌入式 SAPI 时可用。该函数没有在 Windows 平台上实现。
语法
chroot(directory);
参数 | 描述 |
---|---|
directory | 必需。规定新的根目录路径。 |
技术细节
返回值: | 成功则返回 TRUE,失败则返回 FALSE。 |
---|---|
PHP 版本: | 4.0.5+ |
PHP Directory 参考手册
上一篇:PHP chdir() 函数
关注微信小程序
扫描二维码
程序员编程王