le 02/03/2005 à 09:03
Problème classe
Voilà mon problème est expliqué sur le wall.
http://www.lephpfacile.com/wall/wall.php?id=2060
http://www.lephpfacile.com/wall/wall.php?id=2060
<?php class template
{
function template ($chemin){
$modele = @fopen ($chemin, 'r');
$this->content = @fread ($modele, @filesize ($chemin));
@fclose ($modele);
}
function assign ($field, $value){
$this->fields[$field] = $value;
}
function parse (){
foreach ($this->fields as $key => $value){
$result = ereg_replace ("{".$key."}", $value,$this->content);
$this->content = $result;
}
}
function display (){
echo $this->content;
}
}?>
<?php
require ("template_class.php");
$test="bonjour";
// Création d'une nouvelle instance de la classe et définition d'un gabarit
$tpl = new template ("template.php");
// Initialisation des variables du gabarit
$tpl->assign ("TITRE", "Test de notre classe.");
$tpl->assign ("TITRETEXTE", "Mon article");
$tpl->assign ("ARTICLE", "$test");
// Analyse du template
$tpl->parse ();
// Affichage du résultat
$tpl->display();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>{TITRE}</title>
</head>
<body>
<table border="1">
<tr>
<td>{TITRETEXTE}</td>
</tr>
<tr>
<td>{ARTICLE}</td>
<tr>
</table>
</body>
</html>