最新的Web开发教程
 

PHP chdir() Function

<PHP目录参考

改变当前目录:

<?php
// Get current directory
echo getcwd() . "<br>";

// Change directory
chdir("images");

// Get current directory
echo getcwd();
?>

结果:

/home/php
/home/php/images


定义和用法

chdir()函数改变当前目录。


句法

chdir( directory );

参数 描述
directory 需要。 指定新的当前目录

技术细节

返回值: TRUE成功。 FALSE的失败。 抛出失败E_WARNING级的错误
PHP版本: 4.0+

<PHP目录参考