网站开通天天学习频道
发新话题
打印

[PHP] 如何用php创建文件夹和文件

如何用php创建文件夹和文件

///创建文件夹
function createdir($dir)
{
   if(file_exists($dir) && is_dir($dir)){
   }
   else{
    mkdir ($dir,0777);
   }
}
///创建文件
function creat_file($PATH){
   $sFile = "test.html";
   if (file_exists($PATH.$sFile)) {
    creat_file();
   } else {
    $fp= fopen($PATH.$sFile,"w");
    fclose($fp);
   }
   return $sFile;
}

TOP

发新话题