chdir -更改目錄
描述
布爾chdir (字符串$目錄)
更改PHP的當前目錄的目錄。
參數
目錄
新的當前目錄
返回值
返回TRUE或FALSE的成功失敗。
實例
例如# 1 chdir ( )的例子
<?php
// current directory
echo getcwd() . "n";
chdir('public_html');
// current directory
echo getcwd() . "n";
?>
$path="c:temp"';
chdir($path);
getcwd()
gives you back "c:temp"
$path="c:temp"';
chdir($path);
getcwd()
gives you back "c:temp"
to work around this inconsistency
doing a chdir('.') after the chdir always gives back "c:temp"
上面的例子將輸出類似於:
/首頁/文
/首頁/文/ public_html
注
注:如果安全模式被激活, PHP將檢查是否目錄該腳本的操作具有相同的UID (所有者)的腳本,正在執行。
又見
getcwd ( ) -獲取當前工作目錄