ѧϰPHP²»Äܲ»ÌaÏÂSMARTY£¬×÷ΪÖøÃuµÄÄ£°a³ÌÐo£¬SMARTY×ÔÈ»ÓÐÆaÓÅÊÆ¡£ÏÂÃaeÊÇÎÒ×ܽaµÄ×Ô¼ºµÄÒ»µaѧϰÐĵðɣ¡
£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½£½
ÏÈÔÚsmarty.php.netÏÂÔØ×iÐÂsmarty
½«libsÎļþ¼ÐÅÔÚÄaµÄWEBĿ¼Ï£¬ÎÒÊÇÅÔÚsmartyϵģ¬Ä¿Â¼Çe¿oÈçÏ£ºe:/smarty/libs
ÔÚsmartyĿ¼ÏÂн¨ÈçÏÂÎļþ¼Ð£º
templates£¨ÕaÀiÅÄaµÄÄ£°aÎļþ£¬¼´tplÎļþ£(C)
configs
templates_c£¨×Ô¶¯½«±aÒeÍeµÄÎļþת³ÉPHPÅÔÚÕa£(C)
cache
È»ºoÔÚwwwrootĿ¼Ï½¨Á¢index.php£º
<?php
include "smarty/libs/Smarty.class.php";
define('SITE_ROOT', 'e:/smarty'); // ×iaa›]ÓÐб¾€
$tpl = new Smarty();
$tpl->template_dir = SITE_ROOT . "/templates/";
$tpl->compile_dir = __SITE_ROOT . "/templates_c/";
$tpl->config_dir = SITE_ROOT . "/configs/";
$tpl->cache_dir = SITE_ROOT . "/cache/";
//$tpl->left_delimiter = '<{'; ¿É¸u¾ÝÐeÒª¸u¸Ä¡£
//$tpl->right_delimiter = '}>';
$tpl->assign('name','world!');
$tpl->display('index.tpl')
?>
ÔÚtemplateĿ¼Ï½¨Á¢index.tpl£º
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
È»ºo±¾µØindex.phpÏÔʾ³ohello,world!~.