91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP Smarty 頁面靜態化加分頁和緩存控制

發布時間:2020-06-02 23:12:27 來源:網絡 閱讀:686 作者:津沙港灣 欄目:web開發

PHP頁面

<?php 
//打開輸出控制緩沖
ob_start();
//新建模板文件
$file = "./cache/newindex{$_GET['page']}.html";
$cachetime = 10;
const  DSN = 'mysql:host=localhost;dbname=test';
const   DBUSER = 'root';
const   DBPWD     = 'root';
//模板不存在或者超過緩存時間才生成緩存模板
if(!file_exists($file) || filemtime($file)+$cachetime<time()){
//創建smarty對象
require_once './libs/Smarty.class.php';
require_once 'page.class.php';
//定義根目錄
define('ROOT', str_replace("\\", "/",dirname(__FILE__))."/");
//實例化Smarty類
$smarty=new Smarty();
//設定定界符
$smarty->left_delimiter="<{";
$smarty->right_delimiter="}>";
//設置為false 定界符號左右可以有空格
$smarty->auto_literal = false;

//添加一個插件的目錄
//$smarty->setPluginsDir(ROOT."/libs/myplugins/");

//注意添加一個插件,要把系統默認設置的路徑加入 否則不能使用默認系統的插件
$smarty->setPluginsDir(array(
    ROOT."/libs/plugins/",//系統默認設置的路徑
    ROOT."/libs/myplugins/",//自定義的
));

//連接數據庫
try{
    $pdo = new PDO(DSN, DBUSER,DBPWD);
}catch(PDOException $e){
    echo "數據庫連接失敗:".$e->getMessage();
    exit;
}
$query = "select id, username, password,email from users limit 3";
$stmt = $pdo->prepare($query);
$stmt ->execute();
$users = $stmt->fetchAll(PDO::FETCH_ASSOC);
$smarty->assign('users',$users);
//var_dump($users);

$query = "desc users";
$stmt = $pdo->prepare($query);
$stmt ->execute();
$tdname = $stmt->fetchAll(PDO::FETCH_COLUMN);
//var_dump($tdname);
$page = new Page(20, 2);
$smarty->assign('tdname',$tdname);
$smarty->assign('fpage',$page->fpage());
//變量輸出
$smarty->display('hello.tpl');
//返回輸出緩沖區的內容
$content = ob_get_contents();
//將一個字符串寫入文件
file_put_contents("./cache/newindex{$_GET['page']}.html", $content);
//沖刷出(送出)輸出緩沖區中的內容
ob_flush();
echo "緩存文件不存在,查詢數據庫,再生成緩存文件,輸出到瀏覽器";
}else{
    include $file;
    echo "直接加載緩存文件";
}

?>

模板tpl頁面

<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
</head>
<style type="text/css">

</style>
<script type="text/javascript">
    function abc(){
    }
</script>
<{config_load file="../config/my.conf " section="index"}>
<body bgcolor='<{ #bgcolor# }>'>
<h4><{#title#}></h4>

<table border="1" width="800" align="center">
<caption>用戶信息表</caption>
            <th align="center">index</th>
            <th align="center">iteration</th>
            <{foreach $tdname as $val}>
                            <th align="center"><{$val}></th>
            <{/foreach}>
            <{section name="one" loop=$users }>        
                    <{if $smarty.section.one.first}>
                            <tr bgcolor="red" align="center">
                    <{elseif $smarty.section.one.last}>
                            <tr bgcolor="yellow" align="center">
                    <{elseif $smarty.section.one.iteration is even}>
                            <tr bgcolor="pink" align="center">
                    <{else}>
                            <tr bgcolor="green" align="center">
                    <{/if}>                    
                                <td><{$smarty.section.one.index}></td>
                                <td><{$smarty.section.one.iteration}></td>
                                <td><{$users[one].id}></td>
                                <td><{$users[one].username}></td>
                                <td><{$users[one].password}></td>
                                <td><{$users[one].email}></td>
                    </tr>
                    <{sectionelse}>
                    沒有用戶查詢出來!
            <{/section}>
            <tfoot><tr><td colspan="6" align="center">
            <{$fpage}>
            </td></tr></tfoot>
</table>
</body>

瀏覽器頁面

PHP Smarty 頁面靜態化加分頁和緩存控制



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

伊川县| 兴宁市| 邢台县| 安义县| 通山县| 响水县| 化德县| 西宁市| 郁南县| 阜平县| 黔江区| 涿州市| 永兴县| 西和县| 乌兰察布市| 息烽县| 台湾省| 鞍山市| 淮南市| 偃师市| 长葛市| 鹤壁市| 东阿县| 花垣县| 灵宝市| 太仓市| 营口市| 兴和县| 高台县| 兴海县| 丹棱县| 柘城县| 法库县| 沙雅县| 华蓥市| 龙游县| 万全县| 汝州市| 顺义区| 常德市| 牙克石市|