26 lines
498 B
PHP
26 lines
498 B
PHP
<?php
|
|
|
|
|
|
namespace fastphp\base;
|
|
|
|
use fastphp\db\Sql;
|
|
|
|
class Model extends Sql
|
|
{
|
|
protected $model;
|
|
|
|
public function __construct()
|
|
{
|
|
//获取数据库表名
|
|
if(!$this->table){
|
|
//获取模型类名称
|
|
$this->model = get_class($this);
|
|
|
|
//删除模型名最后的model
|
|
$this->model = substr($this->model,0,-5);
|
|
|
|
//数据库表名与类名一致
|
|
$this->table = strtolower($this->model);
|
|
}
|
|
}
|
|
} |