php chdir() 函数

php chdir() 函数语法:bool切换目录(字符串目录)dirDirectory改变to.Changes当前工作目录.

语法:bool切换目录(字符串目录)dirDirectory改变to.Changes当前工作目录,在成功返回真,如果发生错误,则返回FALSE.

范例代码如下:

  1. <?php
  2. if (chdir("upload")) {
  3. print "Changed current directory successfully";
  4. }//开源代码phpfensi.com
  5. ?>
  6. //Output:Changed current directory successfully