好吧,我下面的代码一次性创建了所有文件,而不是依次经过 1、2、3、4 等等
$i = 0;
while($i < $pages)
{
$met = $this->articles();
$myFile = trim($met.".php");
$fh = fopen($myFile, 'w') or die("Can't create files.");
$stringData = "<html><head><meta name=\"description\" content=\"" . $met. "\" />
<meta name=\"keywords\" content=\"" . $met . "\" /><h1>" . $met . "</h1>
<base href='http://gumpic.com/'>".$this->show_web("http://gumpic.com")."</html>";
fwrite($fh, $stringData);
fclose($fh);
$i++;
}
echo "We've created your " . $pages . " pages.";
我将如何通过加载页面,在页面上打印哪些页面已经完成?喜欢;
- 完全的
- 完全的
- 完全的
- 待办的
另外,无论如何我可以加快这个脚本的速度。它非常慢,仅在大约 3 分钟内创建 2k 个文件,然后给我一个内部错误。