29 篇
建站知识总结与分享
搜索“ThinkPHP5.0”
thinkphp5分页paginate()出来的数据怎样循环插入数据?
taotaoit 0 0
3265 0 2017-11-29 ThinkPHP5.1
paginate()出来的数据怎样循环插入数据? paginate()分页如何转数组操作数据之后再转回对象? thinkphp5 model里面用toarray后怎么分页? 以上类似问题的出现,是因为在model模型中使用了->paginate()分页,由于返回的是对象,所以要把数据转换到数组,才能在模...
thinkphp5 分页带参数的解决办法
web 4 0
2670 0 2017-10-26 ThinkPHP5.1
利用tp5默认分页,搜索后点分页,又跑到原来列表了。怎么把搜索关键字传到分页里面呢? $mrs = Db::name('log_operates') ->where($where) ->order('operateId', 'desc') ->paginate(input('pagesiz...
thinkphp5 怎么打印sql语句
web 0 0
4141 0 2017-10-25 ThinkPHP5.1
thinkphp5打印最后一条执行的sql语句 echo db('table')->getlastsql(); db('table')不知道什么意思,不过貌似 db()->getlastsql(); db('123')->getlastsql(); $this->getlastsql(); 这...
thinkPHP5 order多条件排序
taotaoit 12 14
10314 0 2017-10-24 ThinkPHP5.1
总结如下: //单一条件排序 $user = $this->where(['parentId'=>0)->field('userId,userName,userSort,isShow')->order('userSort', 'asc')->select(); //多个条件排序,可以多加一个order...
thinkPHP5 where多条件查询
taotaoit 0 1
2893 0 2017-10-24 ThinkPHP5.1
总结如下: //单一查询条件 $user = $this->where('userId',$userId)->field('secretKey,loginPwd')->find(); //多个查询条件,可以多加一个where $user = $this->where('userId',$userId...
thinkphp5 select对象怎么转数组?
web 3 1
3798 0 2017-10-20 ThinkPHP5.1
toArray() 为什么不行? 方法一: DB操作返回是数组。模型直接操作返回是对象  对象类型转换数组 打开 database.php 增加或修改参数 'resultset_type' => '\think\Collection', 即可连贯操作 model('user')->select()-&...
Declaration of app\home\model\Articles::getParent() should be compatible with think\Model::getParent()
web 0 0
4285 0 2017-09-26 ThinkPHP5.1
Declaration of app\home\model\Articles::getParent() should be compatible with think\Model::getParent() 大概意思是:声明的app\home\model\Articles::getParent()方法应该与think\Model:...
thinkphp5 taglib_pre_load预加载自定义标签库
web 0 3
4575 0 2017-09-26 ThinkPHP5.1
文章内容来自官方手册,需要查看详细的可以访问来源网址。 模板中加载标签库,预加载自定义标签库,扩展内置标签库的加载 下面以标签库放在common作为一个示例: <?php namespace app\common\taglib; use think\template\TagLib; class Demo exte...
ThinkPHP5中的公共函数调用问题
web 3 2
5184 0 2017-09-22 ThinkPHP5.1
在ThinkPHP 3.2.3中调用公共函数是在Application/Common/Common/function.php文件里 那么在ThinkPHP 5 中公用函数应该写在哪里?是在application文件夹下的common.php里么,还是我写在application下的common文件夹里新建一个function.php?...
tp5 application下面的config.php不管用了
taotaoit 0 1
3224 0 2017-09-21 ThinkPHP5.1
tp5 application下面的config.php不管用了,要修改thinkphp/convention.php才管用,原因是我在路口文件重新定义了CONF_PATH常量,导致找不到config.php文件了
tp5里面命名空间app修改
taotaoit 5 4
7079 0 2017-09-21 ThinkPHP5.1
先来看下官方的解释 应用类库的根命名空间统一为app(不建议更改,可以设置app_namespace配置参数更改,V5.0.8版本开始使用APP_NAMESPACE常量定义);  例如:app\index\controller\Index和app\index\model\User。 注意:V5.0.8版本开始使用...
ThinkPhp5 如何引用公共文件里边的函数
web 7 3
4502 0 2017-08-08 ThinkPHP5.1
文章来自网络,确认可用。 把一些公共的函数写在一个文件中,然后引用 公共文件名称只能是:function.php 第一步:创建文件function.php 第二步:把文件function.php放到application\extra\中 其它网页完全不用引用这个文件,只要把这个文件放到这里,就会...
TP 5 如何打开错误以及提示
taotaoit 16 14
8809 1 2017-08-08 ThinkPHP5.1
打开config.php把app_debug设为true
关于本站

“最难不过坚持”

本人承接扒站仿站,php网站维护,病毒查杀,网站编辑,网站改版,html制作

有需要网站维护,改版,病毒查杀,网站编辑,网站备案,html制作等相关的工作可以联系我。
本人有多年相关工作经验,也可提供免费咨询,交个朋友。
有需要探讨问题的朋友,也可以加我微信,共同探讨!
微信:15011482830 QQ:408917339

6523656 2619 39
最新评论
https://jueru.net/
评 留言
:weixiao:
评 留言
:shuijiao: :weiqu: :zhenbang: :leng:
评 留言
:yiwen: :yiwen: :yiwen: :yiwen:
评 EasySass: could not generate CSS file. See Output panel for details.
这个业务逻辑多少都有点奇怪了,阅读浏览次数增值在新闻详情页的控制器方法里setInc,这怎么还写进模型事件里了。如果非要用onAfterRead也可以,把新闻文章的内容单独分出来一个news_content表,然后把它和news做关联,然后给news_content表的onAfterRead事件做增值处理,这样点进新闻页内查询到文章内容时才会触发它。
评 TP6模型事件-查询后onAfterRead不好用
文章标签更多
ThinkPHP (254)
Mysql (58)
DedeCms (33)
jQuery (67)
证件照 (1)
setInc (4)
setDec (4)
onclick (5)