Después de explorar un poco, finalmente encontré un método y lo escribí para que todos pudieran aconsejarme:
Primero, agregue dicho método a la clase Smarty en smartt.class.php:
código PHP:
//Parámetro 1: ruta para guardar el archivo html, parámetro 2: contenido escrito
función MakeHtmlFile($nombre_archivo, $c)
{
if(!$fp = fopen($nombre_archivo, "wa"))
{
echo "¡Error al abrir el archivo!";
devolver falso;
}
si(!fwrite($fp, $c))
{
echo "¡Error al escribir el archivo!";
fclose($fp);
devolver falso;
}
fclose($fp);
}
Pregunta: Todos mis artículos llaman a la plantilla news.tpl, entonces, ¿cómo generarlos en lotes?
Primero echemos un vistazo a news.php.
Código PHP:
<?php
include_once("config.php");
include_once("init.php");
$s->assign("title","Todas las categorías de noticias");
$ID=$_GET["ID"]+0;
$sql="select * del artículo donde newsID=$ID";
$rs=$db->fetch($sql);
$s->assign("news",$rs["rec"][0]);//Nota: $rs["rec"][0] es una matriz
$s->display("noticias.html");
?>
La variable de plantilla completa es solo $news. ¿Cuáles son los beneficios de escribirla así? Puedo leer el contenido como una matriz
, entonces, ¿cómo genero exactamente?
Mira el siguiente código:
muy simple
Código PHP:
<?php
include_once("config.php");
include_once("init.php");
$sql="seleccionar * de artístico";
$rs=$db->fetch($sql);
foreach ($rs["rec"] como $k=>$v)
{
$s->assign("noticias",$v);
$s->MakeHtmlFile("./news/news_".$v[0].".html",$s->fetch("news.html",null, null, false));
}
?>
¡Es muy sencillo!
código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transicional//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]">
<cabeza>
<meta http-equiv="Tipo de contenido" content="text/html; charset=gb2312" />
<título><{$noticias.títulos}></título>
<link href="<{$docroot}>/CSS/main.css" rel="hoja de estilo" type="text/css" />
</cabeza>
<cuerpo>
<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">Hora:</td>
<td width="134" align="left"><{$news.sj}></td>
<td width="110" align="right">Palabras clave:</td>
<td width="220" align="left"><{$news.keyword}></td>
</tr>
<tr>
<td height="25" align="right" >Consejos principales:</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>
</tabla>
</cuerpo>
</html>
Resumen: utilice principalmente el método de búsqueda de Smarty y las operaciones de lectura y escritura de archivos