PHP chroot() 函數(shù)
PHP chroot() 函數(shù)
實例
改變根目錄:
<?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();
?>
結(jié)果:
/
定義和用法
chroot() 函數(shù)改變當前進程的根目錄為 directory,并把當前工作目錄改為 "/"。
注意:該函數(shù)需要 root 權(quán)限,且僅在 GNU 和 BSD 系統(tǒng)上僅當使用 CLI、CGI、嵌入式 SAPI 時可用。該函數(shù)沒有在 Windows 平臺上實現(xiàn)。
語法
chroot(directory);
參數(shù) | 描述 |
---|---|
directory | 必需。規(guī)定新的根目錄路徑。 |
技術(shù)細節(jié)
返回值: | 成功則返回 TRUE,失敗則返回 FALSE。 |
---|---|
PHP 版本: | 4.0.5+ |

相關(guān)文章
- PHP While 循環(huán)
- PHP 面向?qū)ο?/a>
- PHP 多維數(shù)組
- PHP array() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP arsort() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP next() 函數(shù)
- PHP pos() 函數(shù)
- PHP rsort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP 5 Filesystem 函數(shù)