清朝皇帝趣闻:PHP 改变当前目录为指定的目录chdir

来源:百度文库 编辑:中财网 时间:2024/05/10 12:07:27

bool chdir ( string directory)  将 PHP 的当前目录改为 directory。如果成功则返回 TRUE,失败则返回 FALSE

  1. //获得当前目录 
  2. echo getcwd(); 
  3. echo ""; 
  4.  
  5. //改变为 images 目录 
  6. chdir("images"); 
  7. echo ""; 
  8. echo getcwd