例
カレントディレクトリを変更します。
<?php
// Get current directory
echo getcwd() . "<br>";
// Change directory
chdir("images");
// Get current directory
echo getcwd();
?>
結果:
/home/php
/home/php/images
定義と使用法
chdir()関数は、現在のディレクトリを変更します。
構文
chdir( directory );
パラメーター | 説明 |
---|---|
directory | 必須。 新しいカレントディレクトリを指定します。 |
技術的な詳細
戻り値: | 成功した場合にTRUE。 失敗した場合にFALSE。 失敗した場合にE_WARNINGレベルのエラーをスローします |
---|---|
PHPバージョン: | 4.0+ |
<PHPディレクトリリファレンス