Home  >  Article  >  php教程  >  写一段简单的PHP建立文件夹代码

写一段简单的PHP建立文件夹代码

WBOY
WBOYOriginal
2016-06-13 09:05:42930browse

写一段简单的PHP建立文件夹代码

   主要先获取当前目录的路径,然后判断文件夹是否存在,不存在则创建。

  define('DIR_ROOT', str_replace('\\','/',dirname(__FILE__)));//获取当前文件物理路径

  $tmp_file_path = DIR_ROOT.'/tmp/';//在根目录下增加tmp目录的路径

  if(is_dir($tmp_file_path))

  echo "tmp文件夹存在!";

  else

  {

  mkdir($tmp_file_path, 0700);//如果不存在tmp目录,则建立

  echo "tmp文件夹不存在,尝试建立成功!

  ";//未检测建立是否成功

  echo "tmp目录为".$tmp_file_path;

  }

  ?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn