PHP chdir() 函数


PHP Directory 函数

定义和用法

chdir() 函数把当前的目录改变为指定的目录。

若成功,则该函数返回 true,否则返回 false。

语法

chdir(directory)

参数 描述
directorytd> 必需。规定新的当前目录。


例子

<?php
//获得当前目录
echo getcwd();
echo "<br />";

//改变为 images 目录
chdir("images");
echo "<br />";
echo getcwd();
?>

输出:

C:\testweb\main
C:\testweb\main\images


PHP Directory 函数
粤ICP备11097351号-1