<?php final class MBizLog extends SModel { protected static $handle; //单例句柄
protected $table;
protected function __construct() { $this->table = $this->_table('biz_log'); }
/** * 获取本类单例的方法,公开 * * @return MBizLog */ public static function instance() { if(self::$handle){ return self::$handle; }
$class = __CLASS__; self::$handle = new $class(); return self::$handle; }
/** * 商家管理时调用的日志插入 * */ static public function addLog($msg) {
所有模型都继承SModel类
模型类名 以M开头
前两个属性与前两个方法是固定写法 , 请修改其中 与 具体表相关的词(包括注释中)
之后是各种模型方法
注意,模型是单例的,调用时需要 MProduct::instance()->xxx()
基类已经实现的模型方法
1
|
get
|
获取单值
|
|
2
|
row
|
获取一条记录
|
|
3
|
col
|
获取一列
|
|
4
|
select
|
获取多条记录
|
|
5
|
update
|
|
|
6
|
insert
|
|
|
7
|
delete
|
|
|
8
|
exist
|
判断是否存在满足条件的记录
|
|
9
|
immit
|
处理字符串,防注入
|
|
10
|
count
|
计数
|
|
table属性的常用方法
1
|
query
|
复杂SQL语句的查询
|
2
|
execute
|
复杂SQL语句的执行
|
|