1 回答
TA贡献1155条经验 获得超0个赞
1. 例如你的页面看起来像
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p>This is Sample page</p>
</body>
</html>
2. 您的所有 20,000 个文件应位于同一目录中,示例如下
mydirectry/file1.html mydirectry/file2.html mydirectry/file3.html
很快
mydirectry/file20000.html
3. 您可以使用如下 PHP 代码来更新所有文件
$allhtmlfiles = glob("mydirectry/*.html");
foreach($allhtmlfiles as $singlehtmlfile){
$htmlupdatedcontent = '';
$html = '';
$html = file_get_content($singlehtmlfile);
$htmlupdatedcontent = str_replace("<!doctype html>",'<?php require_once('myphpfile.php'); ?>'."\n".'<!doctype html>',$html);
file_put_content($singlehtmlfile, $htmlupdatedcontent);
}
4.您可以在此文件(myphpfile.php)中添加按钮信息。
- 1 回答
- 0 关注
- 80 浏览
添加回答
举报