[PHP開發(fā)APP接口]①②--接口方案三/只讀取緩存

·


Paste_Image.png
Paste_Image.png
Paste_Image.png

修改代碼

cron.php

<?php

//讓crontab定時執(zhí)行的腳本程序 */5 /usr/bin/php /data/www/app/cron.php

//想獲取video中6條數(shù)據(jù)
require_once 'Db.php';
require_once 'file.php';

$sql = "select * from test order by id desc";
$tests = array();
$cache = new File();

try {
    $connect = Db::getInstance()->connect();
} catch (Exception $e) {
    //$e->getMessage
    file_put_contents('./logs/' . date('y-m-d') . '.txt', $e->getMessage());
    return;
}
$result = mysql_query($sql, $connect);
while ($item = mysql_fetch_assoc($result)) {
    $tests[] = $item;
}
$file = new File();
if ($tests) {
    $file->cacheData('index_cron_cache', $tests);
} else {
    file_put_contents('./logs/' . date('y-m-d') . '.txt', "沒有相關(guān)數(shù)據(jù)");
}
return;

?>

list.php

<?php
//http://app.com/list.php寿羞?page=1&pagesize=12
require_once 'response.php';
require_once 'file.php';

$file=new File();
$data=$file->cacheData('index_cron_cache');
echo json_encode($data);
exit;

?>

file.php

<?php

class File
{
    private $_dir;

    const EXT = '.txt';

    public function __construct()
    {
        $this->_dir = dirname(__FILE__) . '/files/';
    }

    public function cacheData($key, $value = '', $cacheTime = 0)
    {
        $filename = $this->_dir . $key . self::EXT;
        //echo $filename;
        if ($value !== '') {
            //將value值寫入緩存

            if ($cacheTime != 0 && is_null($value)) {
                return @unlink($filename);
            }

            $dir = dirname($filename);
            if (!is_dir($dir)) {
                mkdir($dir, 0777);
            }

            $cacheTime = sprintf('%011d', $cacheTime);

            return file_put_contents($filename, $cacheTime . json_encode($value));
        }
        if (!is_file($filename)) {
            echo '!is_file';
            return FALSE;
        }

        $contents = file_get_contents($filename);
        $cacheTime = (int)substr($contents, 0, 11);
        $value = substr($contents, 11);
        if ($cacheTime!=0&&$cacheTime + filemtime($filename) < time()) {
            unlink($filename);
            return FALSE;
        }
        return json_decode($value, true);
    }
}

//$file=new File();
//echo $file->cacheData('test1');

Db.php

<?php

class Db{
    static private $_instance;
    static private $_connectSource;

    private $_dbConfig=array(
        'host'=>'127.0.0.1',
        'user'=>'root',
        'password'=>'',
        'database'=>'info'
    );

    private function __construct()
    {
    }

    static public function getInstance(){
        if(!(self::$_instance instanceof  self)){
            self::$_instance=new Db();
        }
        return self::$_instance;
    }

    public function connect(){
        if(!self::$_connectSource){
            self::$_connectSource=@mysql_connect($this->_dbConfig['host'],$this->_dbConfig['user'],$this->_dbConfig['password']);
            //echo self::$_connectSource;
            if(!(self::$_connectSource)){
                throw new Exception('mysql connect error');
                //die('mysql connect error'.mysql_error());
            }else{

                mysql_select_db($this->_dbConfig['database'],self::$_connectSource);
                mysql_query('set name UTF8');}
        }
        return self::$_connectSource;
    }
}

//    $connect=Db::getInstance()->connect();
//
//    $sql="select * from test";
//    echo mysql_num_rows(mysql_query($sql,$connect));

?>

response.php

<?php

class Response
{
    const JSON="json";

    public static function show($code,$message='',$data=array(),$type=self::JSON){
        if(!is_numeric($code)){
            return '';
        }

        $type=isset($_GET['format'])?$_GET['format']:self::JSON;

        $result=array(
            'code'=>$code,
            'message'=>$message,
            '$data'=>$data
        );

        if($type=='json'){
            self::json($code,$message,$data);
            ecit;
        }else if($type=='array'){
            var_dump($result);
        }else if ($type=='xml'){
            self::xmlEncode($code,$message,$data);
        }else{
            //TODO
        }
    }


    public static function json($code, $message = '', $data = array())
    {
        if(!is_numeric($code)){
            return "";
        }else{
            $result=array(
                'code'=>$code,
                'message'=>$message,
                'data'=>$data
            );
            $str=json_encode($result);
            echo  preg_replace("#\\\u([0-9a-f]{4})#ie", "iconv('UCS-2BE', 'UTF-8', pack('H4', '\\1'))", $str);
            exit;
        }
    }

    public static function xmlEncode($code,$message,$data=array()){
        if(!is_numeric($code)){
            return "";
        }

        $result=array(
            'code'=>$code,
            'message'=>$message,
            'data'=>$data,
        );

        header("Content-Type:text/xml");//指定頁面類型
        $xml="<?xml version='1.0' encoding='UTF-8'?>";
        $xml.="<root>";
        $xml.=self::xmlToEncode($result);
        $xml.="</root>";
        echo $xml;
    }

    public static function xmlToEncode($data)
    {
        $xml = $attr="";
        foreach ($data as $key => $value) {
            if (is_numeric($key)){
                $attr="id='{$key}'";
                $key="item ";
            }
            $xml .= "<{$key}{$attr}>";
            $xml .=is_array($value)?self::xmlToEncode($value):$value;
            $xml .= "</{$key}>";
        }
        return $xml;
    }

}

?>
Paste_Image.png
Paste_Image.png
Paste_Image.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末辨泳,一起剝皮案震驚了整個濱河市玖院,隨后出現(xiàn)的幾起案子菠红,更是在濱河造成了極大的恐慌难菌,老刑警劉巖试溯,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件郊酒,死亡現(xiàn)場離奇詭異键袱,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)摹闽,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來钩骇,“玉大人,你說我怎么就攤上這事倘屹。” “怎么了纽匙?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長烛缔。 經(jīng)常有香客問我馏段,道長践瓷,這世上最難降的妖魔是什么院喜? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任晕翠,我火速辦了婚禮,結(jié)果婚禮上淋肾,老公的妹妹穿的比我還像新娘。我一直安慰自己樊卓,他們只是感情好拿愧,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布碌尔。 她就那樣靜靜地躺著,像睡著了一般七扰。 火紅的嫁衣襯著肌膚如雪奢赂。 梳的紋絲不亂的頭發(fā)上颈走,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼轧钓。 笑死,一個胖子當(dāng)著我的面吹牛毕箍,可吹牛的內(nèi)容都是我干的弛房。 我是一名探鬼主播而柑,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼媒咳!你這毒婦竟也來了粹排?” 一聲冷哼從身側(cè)響起涩澡,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎妙同,沒想到半個月后射富,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體粥帚,經(jīng)...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年茎辐,在試婚紗的時候發(fā)現(xiàn)自己被綠了掂恕。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片拖陆。...
    茶點(diǎn)故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡懊亡,死狀恐怖依啰,靈堂內(nèi)的尸體忽然破棺而出店枣,到底是詐尸還是另有隱情速警,我是刑警寧澤鸯两,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布闷旧,位于F島的核電站钧唐,受9級特大地震影響忙灼,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜该园,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望里初。 院中可真熱鬧啃勉,春花似錦双妨、人聲如沸淮阐。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽哑诊。三九已至群扶,卻和暖如春镀裤,著一層夾襖步出監(jiān)牢的瞬間竞阐,已是汗流浹背暑劝。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工骆莹, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留担猛,地道東北人幕垦。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓傅联,卻偏偏與公主長得像先改,于是被迫代替她去往敵國和親蒸走。 傳聞我的和親對象是個殘疾皇子仇奶,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,527評論 2 349

推薦閱讀更多精彩內(nèi)容