PHP chdir() 函數(shù)
PHP chdir() 函數(shù)
實例
改變當前的目錄:
<?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() 函數(shù)改變當前的目錄。
語法
chdir(directory);
參數(shù) | 描述 |
---|---|
directory | 必需。規(guī)定新的當前目錄。 |
技術細節(jié)
返回值: | 成功則返回 TRUE。失敗則返回 FALSE,且拋出 E_WARNING 級別的錯誤。 |
---|---|
PHP 版本: | 4.0+ |

相關文章
- PHP 數(shù)組排序
- PHP 多維數(shù)組
- PHP Session
- PHP JSON
- PHP array_combine() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_diff_key() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_key_last() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP ksort() 函數(shù)
- PHP list() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Filter 函數(shù)