摘要:
【模型时间戳】 应用配置文件【不过一般不这样用】 // 自动写入时间戳字段 'auto_timestamp' => true, 【控制器块】namespace app\index\controller; use think\Controller;use app\index\model\App; cl 阅读全文
摘要:
namespace app\index\model; use think\Model; class App extends Model{ //自动完成[新增和修改时都会执行] protected $auto =[ 'time' //要验证的字段 ]; //新增时自动验证 protected $ins 阅读全文
摘要:
【模型获取器】 【控制器块】namespace app\index\controller; use think\Controller;use app\index\model\App; class Index extends Controller{ public function index() { 阅读全文
摘要:
几种调用模型的方法: use think\Controller; //use app\index\model\App; use think\Loader; class Index extends Controller{ public function index() { //$res = App:: 阅读全文
摘要:
Db::query();Db::execute(); Db::table()->select(); 所有数据,二维数组,结果不存在时返回空数组Db::table->find(); 一条数据,一维数组,结果不存在时返回NULL Db::table->value(); 一条数据, 结果不存在时返回空Db 阅读全文