欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 改变当前的目录chdir() 函数的用法

程序员文章站 2022-03-17 15:49:09
...
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() 函数的用法的详细内容,更多请关注其它相关文章!

相关标签: chdir php 函数