This article to the students to introduce a PHP batch setup IIS directory instance code, I hope this tutorial will help you.
The code is as follows |
Copy Code |
Gets the file directory list, which returns the array function Getdir ($dir = ") { $dir =empty ($dir)? GETCWD (): $dir; $dirArray []=null; if (false! = ($handle = Opendir ($dir))) { $i = 0; while (false!== ($file = Readdir ($handle))) { Remove the ".", ".." and files with a ". xxx" suffix if ($file! = "." && $file! = "..." &&!strpos ($file, ".")) { $dirArray [$i]= $file; $i + +; } } Close handle Closedir ($handle); } return $dirArray; } ?>
<title>IIS Directory Bulk Setup</title>
if (empty ($_post)) { ?>
}else{ $directorys =@$_post[' directory '; $Execute =@$_post[' Execute ']; $SiteId =@$_post[' SiteId ']; $SiteId =trim ($SiteId); if ($Execute =0) { $ExecutePermission = "AccessRead"; } if ($Execute =1) { $ExecutePermission = "AccessRead | AccessScript "; } if ($Execute =1) { $ExecutePermission = "AccessExecute | AccessRead | AccessScript "; } ?>
if (Is_array ($directorys)) { foreach ($directorys as $directory) { Echo <<
<> <iiswebdirectory location = "/lm/w3svc/{$SiteId}/root/{$directory}" Accessflags= "{$ExecutePermission}" > </iiswebdirectory>rn EOF; } } ?>
} ?>
|
http://www.bkjia.com/PHPjc/632812.html www.bkjia.com true http://www.bkjia.com/PHPjc/632812.html techarticle This article to the students to introduce a PHP batch setup IIS directory instance code, I hope this tutorial will help you. Code to copy the code below? PHP//Get file directory list, the ...