Copy the code The code is as follows:
function makedir($mudir) //Create directory
{
$file = "./$mudir";
@mkdir($file,0777);
}
function writemod($filemodname) //Create the subtemplate file path first
{
$fp=fopen("showmod.shtml","r");
$str=fread($fp,filesize("showmod. shtml"));
fclose($fp);
$fp=fopen($filemodname,"w");
fwrite($fp,$str);
fclose($fp);
}
function writeweb($ content,$web,$modfile) //Update respective sub-template files //$modfile is the sub-template name
{
$fp=fopen($modfile,"r");
$str=fread($fp , filesize($modfile));
$str=str_replace($content,$web,$str);
fclose($fp);
$fp = fopen($modfile,"w");
fwrite($fp ,$str);
fclose($fp);
}
$m = "00000";
makedir($m);
$ff = $m."/0001.shtml";
if(!file_exists($ ff))
{
writemod($ff);
}
else
{
echo"already exists";
}
$d="{content6}"; //Updated content
$dd=""; //Content to be updated //Content to be updated
@writeweb($d,$dd,$ff);
?>
The above introduces the photoshop cs5 official Chinese cracked version download PHP generated static page, including photoshop cs5 official Chinese cracked version download content, I hope it will be helpful to friends who are interested in PHP tutorials.