php代码更改当前目录功能|宗波尘客


代码:

<?php
echo getcwd()."<br>";//输出当前工作文件夹目录并拼接一个换行
mkdir("./test/another1");//在chapter2目录中建立another目录
chdir('../test1/another1');//设置another目录为当前工作目录
echo getcwd();//输出当前目录
?>