目录

PHP chdir() 函数

❮ 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)

参数值

Parameter Description
directory Required. Specifies the new current directory


技术细节

返回值: 成功则为真。失败时为 FALSE。失败时抛出 E_WARNING 级别的错误
PHP 版本: 4.0+

❮ PHP 目录参考