1. 程式人生 > >thinkphp 模型的創建

thinkphp 模型的創建

模塊 str too 模型 name think 創建 tro find()

在模塊下創建modle文件夾

<?php
namespace app\index\model;
use think\Model;

class Destoon_ad extends Model
{
//創建模型成功;
}

實例化,查詢模型

public function index()
{
$ad = new Destoon_ad();
$result = $ad->where(‘aid‘,1)->find();
dump($result->getdata(‘url‘));
}

thinkphp 模型的創建