model 怎么动态绑定不同的表?用构造函数会读不到数据。

浏览:193 发布日期:2020/03/05 分类:ThinkPHP5专区 关键字: model name tableName thinkphp5
<?php

namespace app\admin\model;

use think\Model;

class a extends Model
{
protected $name = null;

public function __construct($name = null)
{
$this->name = $name;
$this->initialize();
}
}

$t1 = new a('table1');
$t2 = new a('table2');
能实例化。但读不到表数据。都是空的
最佳答案
评论( 相关
后面还有条评论,点击查看>>