(PHP 3, PHP 4, PHP 5)
将 PHP 的当前目录改为 directory。
新的当前目录
如果成功则返回 TRUE,失败则返回 FALSE。
例子 1. chdir() 例子
<?php// current directoryecho getcwd() . "\n";chdir('public_html');// current directoryecho getcwd() . "\n";?>
上例的输出类似于:
/home/vincent /home/vincent/public_html
注: 当安全模式被激活时,PHP 将检查被操作的目录是否和正在执行的脚本有相同的 UID(所有者)。