1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- /**
- * [WeEngine System] Copyright (c) 2014 WE7.CC
- * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
- */
- defined('IN_IA') or exit('Access Denied');
- function cache_read($key) {
- $cachedata = pdo_getcolumn('core_cache', array('key' => $key), 'value');
- if (empty($cachedata)) {
- return '';
- }
- $cachedata = iunserializer($cachedata);
- if (is_array($cachedata) && !empty($cachedata['expire']) && !empty($cachedata['data'])) {
- if ($cachedata['expire'] > TIMESTAMP) {
- return $cachedata['data'];
- } else {
- return '';
- }
- } else {
- return $cachedata;
- }
- }
- function cache_search($prefix) {
- $sql = 'SELECT * FROM ' . tablename('core_cache') . ' WHERE `key` LIKE :key';
- $params = array();
- $params[':key'] = "{$prefix}%";
- $rs = pdo_fetchall($sql, $params);
- $result = array();
- foreach ((array)$rs as $v) {
- $result[$v['key']] = iunserializer($v['value']);
- }
- return $result;
- }
- function cache_write($key, $data, $expire = 0) {
- if (empty($key) || !isset($data)) {
- return false;
- }
- $record = array();
- $record['key'] = $key;
- if (!empty($expire)) {
- $cache_data = array(
- 'expire' => TIMESTAMP + $expire,
- 'data' => $data
- );
- } else {
- $cache_data = $data;
- }
- $record['value'] = iserializer($cache_data);
- return pdo_insert('core_cache', $record, true);
- }
- function cache_delete($key) {
- $sql = 'DELETE FROM ' . tablename('core_cache') . ' WHERE `key`=:key';
- $params = array();
- $params[':key'] = $key;
- $result = pdo_query($sql, $params);
- return $result;
- }
- function cache_clean($prefix = '') {
- global $_W;
- if (empty($prefix)) {
- $sql = 'DELETE FROM ' . tablename('core_cache');
- $result = pdo_query($sql);
- if ($result) {
- unset($_W['cache']);
- }
- } else {
- $sql = 'DELETE FROM ' . tablename('core_cache') . ' WHERE `key` LIKE :key';
- $params = array();
- $params[':key'] = "{$prefix}:%";
- $result = pdo_query($sql, $params);
- }
- return $result;
- }
|