扫码一下
查看教程更方便
改变当前的目录:
<?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 | 必需。规定新的当前目录。 |