0

我在以下设置中使用 Smarty:

$smarty = new Smarty;
$smarty -> caching =3600;
$smarty -> compile_check =true;
$smarty -> compile_dir = 'theme/compile/';
$smarty -> config_dir = 'theme/libs/';
$smarty -> cache_dir = 'theme/cache/';
$smarty -> plugins_dir = 'theme/libs/plugins/';
$smarty->left_delimiter = '{';
$smarty->right_delimiter = '}';
$smarty -> clear_compiled_tpl();

我想用这个功能编写一个简单的访客计数器:

function counter() {
    $ip = $_SERVER['REMOTE_ADDR'];
    $now = time();
    $y1 = jgmdate("Y ", $now);
    $y1 = (int) $y1;
    $m1 = jgmdate("m", $now);
    $m1 = (int) $m1;
    $d1 = jgmdate("d", $now);
    $d1 = (int) $d1;

    $result3 = mysql_query("SELECT `times`,`id` FROM `stat_ip` where `IP`='$ip' AND   `year`='$y1' AND `month`='$m1' AND `day`='$d1' ;");
    unset($n3);
    $n3 = (int) mysql_num_rows($result3);
    echo $n3;
    if ($n3 == 0) {
        mysql_query("INSERT INTO `stat_ip` (`id` ,`IP` ,`year` ,`month` ,`day`) VALUES (NULL , '$ip', '$y1', '$m1', '$d1') ;");
    } else if ($n3 == 1) {
        $row3 = mysql_fetch_array($result3);
        $s = (int) $row3['times'] + 1;
        mysql_query("UPDATE `stat_ip` SET `times` = '$s' WHERE `id` = '".$row3['id']."' ;");

    } else {
        echo("error");
    }
}

一切正常,但我的查询在这一行中执行了不止一次(可能是所有查询):

mysql_query("UPDATE `stat_ip` SET `times` = '$s' WHERE `id` = '".$row3['id']."' ;") ;

我认为聪明与我的问题有关!

当我写这段代码时:

$q=$smarty -> fetch('index.tpl');

查询执行 1 次,但是当我将代码更改为:

$q=$smarty -> fetch('index.tpl');
echo $q;

或者

$smarty -> display('index.tpl');

我的查询执行了不止一次!:(

了解更多信息:

http://www.smarty.net/forums/viewtopic.php?p=81161

4

4 回答 4

2

一个常见的错误是在您的 html 输出中有一个空的 img-tag 或 script-tag - 这会使浏览器重新请求当前页面。

于 2012-07-17T08:23:08.653 回答
1

你为什么要调用 $smarty->clear_compiled_tpl();?它确实会删除所有已编译的模板并在每次调用页面时导致重新编译。删除此行。

您在哪里以及如何调用函数计数器?

于 2012-07-16T18:30:34.343 回答
1

我的问题解决了:

我正在使用在 java 脚本代码中有这一行的幻灯片放映:

我在 jquery.nivo.slider.js 将 src="#" 更改为 src=""

现在它工作正常但是我真的不知道为什么浏览器工作很有趣!

谢谢你

于 2012-07-17T12:44:55.143 回答
1

Smarty 只是一个模板引擎,它不会导致数据库出现问题。您的问题可能在模板引擎之外的某个地方。

于 2014-07-17T03:19:26.147 回答