会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
blockphp
好好学习,天天向上
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
10
11
12
13
14
15
下一页
2018年4月16日
destoon二次开发流量
摘要: halt = (DT_DEBUG || IN_ADMIN) ? 1 : 0; $db->pre = $CFG['tb_pre']; $db->connect($CFG['db_host'], $CFG['db_user'], $CFG['db_pass'], $CFG['db_name'], $CFG['db_expires'], $CFG['db_charset'], $CFG['pcon...
阅读全文
posted @ 2018-04-16 10:53 我是谁,我在做什么
阅读(99)
评论(0)
推荐(0)
编辑
thinkphp5 数据类型的转换
摘要:
阅读全文
posted @ 2018-04-16 00:01 我是谁,我在做什么
阅读(359)
评论(0)
推荐(0)
编辑
2018年4月15日
thinkphp5 模型读取器和修改器
摘要: 方法 public function index() { $ad = Destoon_ad::get(2); return $ad->totime; } 模型下创建读取器 protected function getTotimeAttr($totime){ return date('Y-m-d',$
阅读全文
posted @ 2018-04-15 20:56 我是谁,我在做什么
阅读(142)
评论(0)
推荐(0)
编辑
thinkphp5 模型的 删作操作
摘要: delete()方法 $result = Destoon_ad::get(['aid'=>['=',17]]); dump($result->delete()); destroy()方法 public function index() { $where = function($query){ $qu
阅读全文
posted @ 2018-04-15 20:34 我是谁,我在做什么
阅读(108)
评论(0)
推荐(0)
编辑
thinkphp5 模型的 查询操作
摘要: public function index() { //模型实列化调用get()和find()方法 $ad = new Destoon_ad; $where = function($query){ $query->field(['pid','url'])->where('aid',1); }; $r
阅读全文
posted @ 2018-04-15 20:06 我是谁,我在做什么
阅读(267)
评论(0)
推荐(0)
编辑
thinkphp5 模型的 更新操作
摘要: public function index() { $ad = new Destoon_ad(); $data=[ 'url'=>'www.baidu.com', 'pid'=>'6666' ]; $where = ['aid'=>1]; $ad->save($data,$where); dump(
阅读全文
posted @ 2018-04-15 19:26 我是谁,我在做什么
阅读(217)
评论(0)
推荐(0)
编辑
thinkphp5 模型的 新增操作
摘要: 添加操作 public function index() { //1.实列化模型,创建模型对象 $ad = new Destoon_ad(); //2.创建数据,采用对象方式 $ad->pid = '666'; $ad->url = 'www.666.com'; //3.执行添加操作 $result
阅读全文
posted @ 2018-04-15 18:39 我是谁,我在做什么
阅读(158)
评论(0)
推荐(0)
编辑
thinkphp 模型的创建
摘要: 在模块下创建modle文件夹 <?phpnamespace app\index\model;use think\Model; class Destoon_ad extends Model{ //创建模型成功;} 实例化,查询模型 public function index() { $ad = new
阅读全文
posted @ 2018-04-15 18:11 我是谁,我在做什么
阅读(137)
评论(0)
推荐(0)
编辑
thinkphp5 增删改查操作
摘要: 新增方法 $affected = Db::table('destoon_ad') ->insert([ 'pid'=>'2018', 'url'=>'www.baidu.com' ]); return $affected ? '成功添加'.$affected.'条数据' : '添加失败'; 批量新增
阅读全文
posted @ 2018-04-15 17:39 我是谁,我在做什么
阅读(178)
评论(0)
推荐(0)
编辑
tp5 的查询构造器
摘要: dump( Db::table('destoon_ad') ->where('aid',1) ->find() ); dump( Db::table('destoon_ad') ->field(['title','image_url']) ->where([ 'aid'=>['>',1], 'pid
阅读全文
posted @ 2018-04-15 11:43 我是谁,我在做什么
阅读(147)
评论(0)
推荐(0)
编辑
上一页
1
···
10
11
12
13
14
15
下一页
公告