chdir 改变目录
发表日期:2021-07-01 08:55:30 | 来源: | | 浏览(877) 分类:目录函数
chdir
(PHP 4, PHP 5, PHP 7, PHP 8)
chdir — 改变目录
说明
chdir(string $directory
): bool
将 PHP 的当前目录改为 directory
。
参数
directory
新的当前目录
返回值
成功时返回 true
, 或者在失败时返回 false
。
错误/异常
Throws an error of level E_WARNING
on failure.
范例
示例 #1 chdir() 例子
<?php // current directory echo getcwd() . "\n"; chdir('public_html'); // current directorye cho getcwd() . "\n"; ?>
以上例程的输出类似于:
/home/vincent /home/vincent/public_html
注释
警告
If the PHP interpreter has been built with ZTS (Zend Thread Safety) enabled,
any changes to the current directory made through chdir()will be invisible to the operating system. All built-in PHP functions will
still respect the change in current directory; but external library
functions called using FFI will not. You
can tell whether your copy of PHP was built with ZTS enabled usingphp -i or the built-in constantPHP_ZTS
.
参见
getcwd() - 取得当前工作目录
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- chdir 改变目录(0)
- chroot 改变根目录(0)
- closedir 关闭目录句柄(0)
- dir 返回一个 Directory 类实例(0)
- getcwd 取得当前工作目录(0)
- opendir 打开目录句柄(0)
- readdir 从目录句柄中读取条目(0)
- rewinddir 倒回目录句柄(0)
- scandir 列出指定路径中的文件和目录(0)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)