Depois de alguma exploração, finalmente encontrei um método e escrevi-o para conselho de todos:
Primeiro, adicione esse método à classe Smarty em smartt.class.php:
Código PHP:
//Parâmetro 1: caminho para salvar o arquivo html, parâmetro 2: conteúdo escrito
função MakeHtmlFile($nome_arquivo, $c)
{
if(!$fp = fopen($nome_arquivo, "wa"))
{
echo "Falha ao abrir arquivo!";
retornar falso;
}
if(!fwrite($fp, $c))
{
echo "Falha ao gravar arquivo!";
fclose($fp);
retornar falso;
}
fclose($fp);
}
Pergunta: Todos os meus artigos chamam o modelo news.tpl, então como gerá-los em lotes?
Vamos dar uma olhada em news.php primeiro
Código PHP:
<?php
include_once("config.php");
include_once("init.php");
$s->assign("title","Todas as categorias de notícias");
$ID=$_GET["ID"]+0;
$sql="selecione * do artical onde newsID=$ID";
$rs=$db->fetch($sql);
$s->assign("news",$rs["rec"][0]);//Nota: $rs["rec"][0] é um array
$s->display("notícias.html");
?>
Toda a variável do modelo é apenas $news. Quais são os benefícios de escrevê-la assim? Posso ler o conteúdo como uma matriz
, então como exatamente posso gerar:
Observe o seguinte código:
muito simples
Código PHP:
<?php
include_once("config.php");
include_once("init.php");
$sql="selecione *do artístico";
$rs=$db->fetch($sql);
foreach ($rs["rec"] como $k=>$v)
{
$s->assign("notícias",$v);
$s->MakeHtmlFile("./news/news_".$v[0].".html",$s->fetch("news.html",null, null, false));
}
?>
É muito simples!
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[url=http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd]http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd[/url]">
<html xmlns="[url=http://www.w3.org/1999/xhtml]http://www.w3.org/1999/xhtml[/url]">
<cabeça>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><{$news.titles}></title>
<link href="<{$docroot}>/CSS/main.css" rel="stylesheet" type="text/css" />
</head>
<corpo>
<table width="800" border="0" align="center" cellpadding="0" cellpacing="0" style="border:solid #CCCCCC 1px">
<tr>
<td height="25" colspan="6" align="center" bgcolor="#eeeeee"><strong><{$news.titles}></strong></td>
</tr>
<tr>
<td width="74" height="25" align="right">Autor:</td>
<td width="220"><{$news.author}></td>
<td width="40" align="right">Tempo:</td>
<td width="134" align="left"><{$news.sj}></td>
<td width="110" align="right">Palavras-chave:</td>
<td width="220" align="left"><{$news.keyword}></td>
</tr>
<tr>
<td height="25" align="right" >Dicas principais:</td>
<td height="25" colspan="5" class="artical" style="border:double #FF0000 3px;"><{$news.sumary}></td>
</tr>
<tr>
<td height="25" colspan="6" align="left" class="artical" style="padding:10px;"><{$news.contents}></td>
</tr>
</tabela>
</body>
</html>
Resumo: Use principalmente o método de busca do smarty e operações de leitura e gravação de arquivos