改变什么的目录。当前脚本的目录?

<?php//获得当前目录echo getcwd();echo "<br />";//改变为 images 目录chdir("images");echo "<br />";echo getcwd();?> 输出:C:\testweb\mainC:\testweb\main\images光看网上说它能改变目录,可怎么改变目录的?getcwd():Returns the current working directory on success, or FALSE on failure什么叫current working directory (当前工作目录)??懂的人解释一下。谢谢!

千万里不及你
浏览 88回答 2
2回答

扬帆大鱼

PHP chdir() 函数作用是将当前目录改为指定目录,一般这是在程序执行过程中使用。其语法格式为:chdir(directory),directory为改变后的新目录名称。下面以一个实例来帮助你理解用法和作用。view sourceprint?01 <?php02 //将当前目录改变为upload目录03 echo getcwd();//获取当前目录04 echo "<br />";0506 //改变为upload目录07 chdir("upload");08 echo "<br />";09 echo getcwd();//获取改变后的新目录名称10 ?>若存放此段代码的PHP文件存放在“E:\phptest\temp”,则运行后将输出以下结果:E:\phptest\tempE:\phptest\temp\upload

墨色风雨

<?php// current directoryecho getcwd() . "\n";chdir('public_html');// current directoryecho getcwd() . "\n";?>以上例程的输出类似于:/home/vincent/home/vincent/public_html
打开App,查看更多内容
随时随地看视频慕课网APP