[PHP开发APP接口]①②--接口方案三/只读取缓存

·


[PHP开发APP接口]①②--接口方案三/只读取缓存_第1张图片
Paste_Image.png
[PHP开发APP接口]①②--接口方案三/只读取缓存_第2张图片
Paste_Image.png
[PHP开发APP接口]①②--接口方案三/只读取缓存_第3张图片
Paste_Image.png

修改代码

cron.php

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', "没有相关数据");
}
return;

?>

list.php

cacheData('index_cron_cache');
echo json_encode($data);
exit;

?>

file.php

_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

'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

$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.="";
        $xml.=self::xmlToEncode($result);
        $xml.="";
        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 .= "";
        }
        return $xml;
    }

}

?>
[PHP开发APP接口]①②--接口方案三/只读取缓存_第4张图片
Paste_Image.png
[PHP开发APP接口]①②--接口方案三/只读取缓存_第5张图片
Paste_Image.png
Paste_Image.png

你可能感兴趣的:([PHP开发APP接口]①②--接口方案三/只读取缓存)