PHP chdir() 函数
PHP chdir() 函数
实例
改变当前的目录:
<?php
// Get current directory
echo getcwd() . "<br>";
// Change directory
chdir("images");
// Get current directory
echo getcwd();
?>
// Get current directory
echo getcwd() . "<br>";
// Change directory
chdir("images");
// Get current directory
echo getcwd();
?>
结果:
/home/php
/home/php/images
/home/php/images
定义和用法
chdir() 函数改变当前的目录。
语法
chdir(directory);
参数 | 描述 |
---|---|
directory | 必需。规定新的当前目录。 |
技术细节
返回值: | 成功则返回 TRUE。失败则返回 FALSE,且抛出 E_WARNING 级别的错误。 |
---|---|
PHP 版本: | 4.0+ |
PHP Directory 参考手册
相关文章
- PHP 数组排序
- PHP 多维数组
- PHP Session
- PHP JSON
- PHP array_combine() 函数
- PHP array_diff() 函数
- PHP array_diff_key() 函数
- PHP array_diff_ukey() 函数
- PHP array_intersect_assoc() 函数
- PHP array_key_last() 函数
- PHP array_map() 函数
- PHP array_push() 函数
- PHP array_sum() 函数
- PHP array_udiff() 函数
- PHP ksort() 函数
- PHP list() 函数
- PHP shuffle() 函数
- PHP sizeof() 函数
- PHP 5 Date/Time 函数
- PHP Filter 函数