chdir() 函数改变当前的目录。此函数成功则返回 TRUE。失败则返回 FALSE,且抛出 E_WARNING 级别的错误。

实例代码

<?php
if (chdir("upload")) { 
   print "Changed current directory successfully"; 
}
?>
登录后复制

输出结果:

Changed current directory successfully 
Explanation:
This code changes the working directory to the upload directory in the previous working directory.
登录后复制

以上就是php 改变当前的目录chdir() 函数的用法的详细内容,更多请关注Work网其它相关文章!

08-29 08:56