PHP_PHP チュートリアルで記述されたキャッシュ データ関数を備えた Mysqli クラス

WBOY
リリース: 2016-07-21 15:16:47
オリジナル
823 人が閲覧しました

复制代码代码如下:

/**
* Mysqli クラス
*/
class db_mysqli {
protected $mysqli;
保護された $sql;
保護された $rs;
保護された $query_num = 0;
保護された $fetch_mode = MYSQLI_ASSOC;
protected $cache_dir = './cache/';
保護された $cache_time = 1800;
public function __construct($dbhost, $dbuser, $dbpass, $dbname) {
$this->mysqli = new mysqli($dbhost, $dbuser, $dbpass, $dbname);
if(mysqli_connect_errno()) {
$this->mysqli = false;
echo '

'.mysqli_connect_error().'

';
死ぬ();
} else {
$this->mysqli->set_charset("utf8");
}
}
パブリック関数 __destruct() {
$this->free();
$this->close();
}
保護関数 free() {
@$this->rs->free();
}
保護された関数 close() {
$this->mysqli->close();
}
保護された関数 fetch() {
return $this->rs->fetch_array($this->fetch_mode);
}
保護関数 getQuerySql($sql, $limit = null) {
if (@preg_match("/[0-9]+(,[ ]?[0-9]+)?/is", $limit) && !preg_match("/ LIMIT [0-9]+(,[ ]?[0-9]+)?$/is", $sql)) {
$sql .= " LIMIT " . $limit;
}
$sql を返す;
}
protected function get_cache($sql,$method) {
include_once './cache.php';//若框架中使用__autoload(),这里可以不使用加下文件
$cache = new cache($this- >cache_dir,$this->cache_time);
$cache_file = md5($sql.$method);
$res = $cache->get_cache($cache_file);
if(!$res) {
$res = $this->$method($sql);
$cache->set_cache($cache_file, $res);
}
$res を返す;
}
パブリック関数 query_num() {
return $this->query_num;
}
パブリック関数 set_cache_dir($cache_dir) {
$this->cache_dir = $cache_dir;
}
パブリック関数 set_cache_time($cache_time) {
$this->cache_time = $cache_time;
}
パブリック関数クエリ($sql, $limit = null) {
$sql = $this->getQuerySql($sql, $limit);
$this->sql = $sql;
$this->rs = $this->mysqli->query($sql);
if (!$this->rs) {
echo "

".$this->mysqli->error."

";
死ぬ();
} else {
$this->query_num++;
$this->rs; を返す
}
}
パブリック関数 getOne($sql) {
$this->query($sql, 1);
$this->fetch_mode = MYSQLI_NUM;
$row = $this->fetch();
$this->free();
$row[0] を返します;
}
パブリック関数 get_one($sql) {
return $this->getOne($sql);
}
パブリック関数cache_one($sql) {
$sql = $this->getQuerySql($sql, 1);
return $this->get_cache($sql, 'getOne');
}
パブリック関数 getRow($sql, $fetch_mode = MYSQLI_ASSOC) {
$this->query($sql, 1);
$this->fetch_mode = $fetch_mode;
$row = $this->fetch();
$this->free();
$row を返します;
}
public function get_row($sql, $fetch_mode = MYSQLI_ASSOC) {
return $this->getRow($sql);
}
パブリック関数cache_row($sql) {
$sql = $this->getQuerySql($sql, 1);
return $this->get_cache($sql, 'getRow');
}
public function getAll($sql, $limit = null, $fetch_mode = MYSQLI_ASSOC) {
$this->query($sql, $limit);
$all_rows = array();
$this->fetch_mode = $fetch_mode;
while($rows = $this->fetch()) {
$all_rows[] = $rows;
}
$this->free();
$all_rows を返します;
}
public function get_all($sql, $limit = null, $fetch_mode = MYSQLI_ASSOC) {
return $this->getAll($sql);
}
パブリック関数cache_all($sql, $limit = null) {
$sql = $this->getQuerySql($sql, $limit);
return $this->get_cache($sql, 'getAll');
}
public function insert_id() {
return $this->mysqli->insert_id();
}
パブリック関数escape($str) {
if(is_array($str)) {
foreach($str as $key=>$val) {
$str[$key] = $this->escape ($val);
}
} else {
$str =addslashes(trim($str));
}
$str; を返します。
}
}
//用法
$db = new db_mysqli('localhost', 'root', 111222, 'dict');
$db->set_cache_time(10);
$db->set_cache_dir('./cache/sql/');
$sql = "select * from word_id 制限 10,10 による単語順序";
$res1 = $db->get_all($sql);
$res2 = $db->cache_all($sql);
echo $db->query_num(),'
';
?>

www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/325834.html技術記事次のようにコードをコピーします: ?php /*** Mysqliクラス*/ class db_mysqli { protected $mysqli; protected $rs; protected $query_num = MYSQLI_ASSO...
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!