这是我在index.php文件中的主要查询
我正在尝试使用phpfastcache
缓存此查询$shorting = $conn->prepare("SELECT text,time FROM small WHERE active='0' ORDER BY time DESC LIMIT 10");
$shorting->execute();
while($obj = $shorting->fetch(PDO::FETCH_OBJ)){
<div id="lastnews_title">
<div><?php echo $obj->text; ?></div>
<div style="text-align:left">
<?php echo timeTonow($obj->time); ?>
</div>
这是phpfastcache网站上的一个例子
// Require Library
require_once("../phpfastcache/phpfastcache.php");
// simple Caching with:
$cache = phpFastCache();
// Try to get $products from Caching First
// product_page is "identity keyword";
$products = $cache->get("product_page");
if($products == null) {
$products = "DB QUERIES | FUNCTION_GET_PRODUCTS | ARRAY | STRING | OBJECTS";
// Write products to Cache in 10 minutes with same keyword
$cache->set("product_page",$products , 600);
}
// use your products here or return it;
echo $products;
我在index.php中写了require_once("../phpfastcache/phpfastcache.php");
我不知道如何在此缓存类中插入我的查询?
抱歉英语不好答案 0 :(得分:0)
你没有围绕这组php语句的一组<php>
标签
$shorting = $conn->prepare("SELECT text,time FROM small WHERE active='0' ORDER BY time DESC LIMIT 10");
$shorting->execute();
while($obj = $shorting->fetch(PDO::FETCH_OBJ)){
这段代码看起来不像它的功能,我认为这就是你在这里得到的重点。
你应该学习PHP的一些基础知识。我对PHP以及你想要做的事情知之甚少,但我知道这是一个糟糕的“php”语法。
这是你的第一个代码块应该是这样的:
$shorting = $conn->prepare("SELECT text,time FROM small WHERE active='0' ORDER BY time DESC LIMIT 10");
$shorting->execute();
while($obj = $shorting->fetch(PDO::FETCH_OBJ)){
echo "<div id='lastnews_title'>";
echo "<div> $obj->text </div>";
echo "<div style='text-align:left'>";
echo timeTonow($obj->time);
echo "</div>"
}
您缺少结尾div
代码
我遗漏了php标签,因为我认为这是一个php文档,所有这些都包含在一组php标签中<php> </php>