首页 > 语言 > PHP > 正文

php chdir() 函数

2024-09-04 11:49:05
字体:
来源:转载
供稿:网友

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

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

范例代码如下:

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表