chdir — 改变目录
说明

bool chdir ( string directory )
将 PHP 的当前目录改为 directory。

参数

directory
新的当前目录

返回值
如果成功则返回 TRUE,失败则返回 FALSE。

范例
例 1. chdir() 例子

<?php

// current directory
echo getcwd() . “\n”;

chdir(‘public_html’);

// current directory
echo getcwd() . “\n”;

?>

上例的输出类似于:

/home/vincent
/home/vincent/public_html

分类: PHP

寒林

www.3code.cn 专注WordPress企业主题