您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1403 复制当前网址

chdir



PHP chdir() 函数

定义和用法

chdir() 函数把当前的目录改变为指定的目录。

若成功,则该函数返回 true,否则返回 false。


语法

chdir(directory)


参数描述
directory必需。规定新的当前目录。

例子

<?php
//获得当前目录
echo getcwd();
echo "<br />";

//改变为 images 目录
chdir("images");
echo "<br />";
echo getcwd();
?>

输出:

C:\testweb\main
C:\testweb\main\images


文章来源:https://liqingbo.com/blog-554.html

上一篇:chroot

下一篇:time

评论