当前位置:编程学习 > php >>

php chdir() 函数

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

在成功返回真。如果发生错误,则返回FALSE。

范例


<?php

if (chdir("upload")) {
   print "Changed current directory successfully";
}

?>
Output:
Changed current directory successfully
Explanation:
This code changes the working directory to the upload directory in the previous working directory.

补充:Php教程,Php函数
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,