您好,欢迎访问一九零五行业门户网

thinkphp动态创建数据表结构

业务需要每月新增一张表,以应对大量的数据情况,以下为thinkphp动态创建数据表结构源码
$table = 'activelog'. date('ym');
$sql = create table if not exists `$table` (
`id` int(11) not null auto_increment,
`system` tinyint(4) not null comment 'xxxxxx',
`pfid` smallint(4) not null,
`uid` int(11) not null,
.....
`update_time` timestamp not null default current_timestamp on update current_timestamp,
primary key (`id`)
) engine=innodb default charset=utf8 comment='活跃统计' auto_increment=1 ;;
m('', '', 'db_config_active')->execute($sql);//注意,这里创建表的话,第一个参数不要设置,不然会检测表信息,然表不存在,导致报错。
我们来一探究竟:
thinkphp3.2会默认开启数据表字段检测,在model.class.php
查看源码
// 是否自动检测数据表字段信息
protected $autocheckfields = true;
在db方法中,1409行, 有这样的代码:
if(!empty($this->name) && $this->autocheckfields) $this->_checktableinfo();
$this->name 在构造方法中设置,也就是我们m('','','xxxx') 第一个参数。 参数3为数据库连接信息
今天在写业务逻辑的时候碰到的,顺便写下来,希望能够帮到大家。
您也可以参考我的个人网站: http://www.isbala.com/article/270.html
ad:真正免费,域名+虚机+企业邮箱=0元
其它类似信息

推荐信息