Home > php教程 > php手册 > body text

php中chdir()函数用法实例

WBOY
Release: 2016-06-06 20:17:38
Original
1785 people have browsed it

这篇文章主要介绍了php中chdir()函数用法,以实例形式简单讲述了chdir实现切换目录的方法,需要的朋友可以参考下

本文实例讲述了php中chdir()函数的用法。分享给大家供大家参考。具体用法分析如下:

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

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

范例代码如下:

复制代码 代码如下:

if (chdir("upload")) { 
   print "Changed current directory successfully"; 
}//Output:Changed current directory successfully
?>

希望本文所述对大家的php程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!