PHPFastCache适用于Localhost,而不适用于实时服务器

时间:2014-08-03 16:07:37

标签: php mysql localhost wamp wampserver

我是phpfastcache库的全新手,但是我让它在localhost(XAMMP)上工作,但不能在我的实时服务器上工作。

代码如下

<?php
    require_once("./phpfastcache/phpfastcache.php");

    $prices=phpFastCache() ;
    $store_euro=$prices->get("store_euro_price"); 

    if ($store_euro_price==null){
        $store_euro=getPriceFromDBeuro("store");
        $prices->set("store_euro_price",$store_euro,600);
    }
    echo $store_euro;
?>

它只是从db或缓存中加载任何价格......任何想法?

0 个答案:

没有答案