PHP chdir() 函数
PHP chdir() 函数用于改变当前的目录
(php4,php5,php7)
函数原型
chdir( **directory** );
参数列表
参数 | 描述 |
---|---|
directory | 必需。规定新的当前目录 |
返回值
成功则返回 TRUE
失败则返回 FALSE,且抛出 E_WARNING 级别的错误
范例
改变当前的目录:
<?php // Get current directory echo getcwd() , "<br>"; // Change directory chdir("images"); // Get current directory echo getcwd();
运行以上 PHP 范例,输出结果如下
home/php/home/php/images