KodExplorer/app/core/Model.class.php

38 lines
627 B
PHP
Raw Normal View History

2014-04-01 18:00:42 +00:00
<?php
/*
2017-08-23 19:40:27 +00:00
* @link http://kodcloud.com/
* @author warlee | e-mail:kodcloud@qq.com
2014-04-01 18:00:42 +00:00
* @copyright warlee 2014.(Shanghai)Co.,Ltd
2017-08-23 19:40:27 +00:00
* @license http://kodcloud.com/tools/license/license.txt
2014-04-01 18:00:42 +00:00
*/
/**
* 模型抽象类
* 一个关于各种模型的基本行为类,每个模型都必须继承这个类的方法
*/
abstract class Model {
var $db = null;
var $in;
var $config;
/**
* 构造函数
* @return Null
*/
function __construct(){
2017-08-23 19:40:27 +00:00
global $config, $in;
$this -> in = &$in;
$this -> config = &$config;
2014-04-01 18:00:42 +00:00
}
/**
* TODO db
*/
function db(){
if ($this ->db != NULL) {
return $this ->db;
}else{
}
}
}