php smarty °²×° ¡¢ÅäÖá¢Ê¹Óà ¼°»º´æcacheµÄÅäÖÃʹÓÃ
cache ʹÓãº
cacheÅäÖãº
$smarty->cache_dir = "/caches/"; //»º´æÄ¿Â¼
$smarty->caching = true; //¿ªÆô»º´æ,ΪflaseµÄʱºî»º´æÎÞЧ
$smarty->cache_lifetime = 60; //»º´æÊ±¼ä
cacheÇå³ýºÍʹÓãº
$smarty->display('cache.tpl', cache_id); //´´½¨´øIDµÄ»º´æ
cache.tpl //Ä£°åÎļþ
$smarty->clear_all_cache(); //Çå³ýËùÓлº´æ
$smarty->clear_cache('index.htm'); //Çå³ýindex.tplµÄ»º´æ
$smarty->clear_cache('index.htm',cache_id); //Çå³ýÖ¸¶¨idµÄ»º´æ
smarty °²×°ÅäÖà ˵Ã÷£º
ÏÂÔØsmarty½âѹ ½«libsĿ¼ copyµ½ÏîÄ¿Ö÷Ŀ¼Ï£¬ÖÁÉÙ½¨Á¢ÈçÏÂÈçÏÂÎļþ¼Ð£ºtemplates templates_c configs cache
index.php
<?php
include("libs/Smarty.class.php");
$smarty = new Smarty;
$smarty->template_dir = './templates/';
$smarty->compile_dir = './templates_c/';
$smarty->config_dir = './configs/';
$smarty->cache_dir = './cache/';
$smarty->caching = true;
$smarty->cache_lifetime = 60;
$smarty->left_delimiter = "<{";
$smarty->right_delimiter = "}>";
$smarty->assign("title", "À¬»ø");
$smarty->assign("content","²âÊÔÓõÄÍøÒ³ÄÚÈÝ00");
$smarty->display("index.tpl",cache_id);
?>
index.tplÄ£°åÎļþ
<html>
¡¡¡¡<head>
¡¡¡¡<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
¡¡¡¡<title><{$title}></title>
¡¡¡¡</head>
¡¡¡¡<body>
¡¡¡¡<{$content}>
¡¡¡¡</body>
¡¡¡¡</html>
Ïà¹ØÎĵµ£º
1¡¢ÈçºÎʵÏÖ×Ö·û´®·×ª£¿
<?php
function getStr($str){
$len=strlen($str);
for ($i=0;$i<$len/2;$i++){
$temp=$str[$i ......
ÔÚÍùPHP SessionÀïÃæ±£´æÐÅϢ֮ǰ£¬ÐèÒªÊ×ÏÈʹÓÃsession_start()º¯ÊýÀ´Æô¶¯session,
Õâ¸öº¯Êý±ØÐëÔÚ<html>±êǩ֮ǰµ÷ÓᣴúÂëÈçÏ£º
<?php session_start(); ?>
<html>
<body>
</body>
</html>
ÔÚSessionÆô¶¯ÒԺ󣬿ÉÒÔʹÓÃPHP $_SESSION±äÁ¿À´»ñÈ¡ºÍÉèÖÃsession±äÁ¿£¬ÊµÀý´ú ......
PHPÃæÏò¶ÔÏó·ÖÎöÉè¼ÆµÄ61Ìõ¾ü¹æ
Äã²»±ØÑϸñ×ñÊØÕâЩÔÔò£¬Î¥±³ËüÃÇÒ²²»»á±»´¦ÒÔ×Ú½ÌÐÌ·£¡£µ«ÄãÓ¦µ±°ÑÕâЩÔÔò¿´³É¾¯Á壬ÈôÎ¥±³ÁËÆäÖеÄÒ»Ìõ£¬ÄÇô¾¯Áå¾Í»áÏìÆð ¡£ ----- Arthur J.Riel
(1)ËùÓÐÊý¾Ý¶¼Ó¦¸ÃÒþ²ØÔÚËùÔÚµÄÀàµÄÄÚ²¿¡£
(2)ÀàµÄʹÓÃÕß±ØÐëÒÀÀµÀàµÄ¹²Óнӿڣ¬µ«À಻ÄÜÒÀÀµËüµÄʹÓÃÕß¡£
(3)¾¡Á¿¼õÉÙÀàµÄÐÒéÖÐ ......