php生成html文件的简单例子
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Libérer: 2016-07-25 09:03:54
original
996 Les gens l'ont consulté
-
-
$con = array(array("newtitle","newcontent"),array("newtitle2","newcontent2"));
- foreach($con as $id=>$val)
- {
- $title = $val[0];
- $content = $val[1];
- $path = $id.'.htm';
- $fp = fopen("jia.htm", "r"); //打开文件,只读方式
- $str = fread($fp, filesize("jia.htm")); //读取文件
- $str = str_replace("{title}", $title,$str); //将字符串中的内容进行替换
- $str = str_replace("{content}", $content, $str);
- fclose($fp); //关闭文件
-
- $fpw = fopen($path, "w"); //以写入的方式打开文件
- fwrite($fpw, $str); //将$str写入文件
- fclose($fpw);
- echo "generate successfully!";
- }
- ?>
复制代码
|
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31