PHP
文件系统 | File System

chdir

chdir

(PHP 4, PHP 5, PHP 7)

chdir - 更改目录

Description

bool chdir ( string $directory )

将PHP的当前目录更改为directory

Parameters

directory

新的当前目录

Return Values

返回TRUE时成功或FALSE失败。

Errors/Exceptions

抛出E_WARNING失败级别的错误。

Examples

Example #1 chdir() example

<?php // current directory echo getcwd() . "\n"; chdir('public_html' // current directory echo getcwd() . "\n"; ?>

上面的例子会输出类似于:

/home/vincent /home/vincent/public_html

Notes

注意:启用安全模式后,PHP会检查脚本所在的目录是否与正在执行的脚本具有相同的UID(所有者)。

← Directory Functions

chroot →

© 1997–2017 The PHP Documentation Group

根据知识共享署名许可证v3.0或更高版本授权。