51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#hi
thinkphp5使用Markdown编辑器Editor.md并上传图片
Editor.md官网:https://pandao.github.io/editor.md/index.html下载后解压放到项目内,和引入ueditor差不多1、引入项目资源<!--markdown编辑器--><scriptsrc="{$Think.config.__STATIC__}/admin...
代码星球
·
2020-03-28
thinkphp5
使用
Markdown
编辑器
Editor.md
thinkphp5使用uploadify
uploadifyflash版本下载地址:http://www.uploadify.com/wp-content/uploads/files/uploadify.zip将解压后的文件放入项目公共文件中,我放在项目中的地址是:cmspublicstaticadminplusuploadify,cms是我的项目文件夹首先引...
代码星球
·
2020-03-28
thinkphp5
使用
uploadify
thinkphp5使用querylist采集图片示例
首先composer引入querylistcomposerrequirejaeger/querylist注意需要php7.0以上版本<?phpnamespaceappindexcontroller;usethinkController;useQLQueryList;classIndex{publicfunctio...
代码星球
·
2020-03-28
thinkphp5
使用
querylist
采集
图片
再看thinkphp5分页类使用
之前使用tp5的分页paginate类时只用到了第一个参数,也就是每页显示多少行今天又仔细看了下手册和paginate类,发现paginate可传入的参数有很多,可以满足更多需求比如可以指定分页的数据,可以使用重写的分页类等。。。下面是tp5.1的分页类/***分页查询*@accesspublic*@paramint|...
代码星球
·
2020-03-28
再看
thinkphp5
分页
使用
tp5模型事件回调函数中不能使用$this
tp5模型事件回调函数中不能使用$this,使用会报错,涉及到数据库操作使用Db类,不能使用$this->save()之类的方式如果回调函数中需要使用类内函数,需要将函数定义为static,通过self::调用给个例子:分类删除前删除该分类的子分类publicstaticfunctioninit(){self::...
代码星球
·
2020-03-28
tp5
模型
事件
回调
函数
thinkphp5无限极分类
publicfunctionpriTree(){$data=$this->select();return$this->_reSort($data);}//递归对有的分类进行重新排序privatefunction_reSort($data,$cate_pid=0,$level=0){static$ret=ar...
代码星球
·
2020-03-28
thinkphp5
无限
分类
关于thinkphp5中数据库分组查询group
在使用tp5的group进行分组查询总是报错,以主键进行分组是不报错,但没有任何意义与聚合函数一起使用的不会报错,如官方文档给出的代码Db::table('think_user')->field('user_id,username,max(score)')->group('user_id')->sel...
代码星球
·
2020-03-28
关于
thinkphp5
数据库
分组
查询
微信小程序中this指向作用域问题this.setData is not a function报错
在微信小程序中我们一般通过以下方式来修改data中的数据doCalc:function(){wx.request({url:url,method:'POST',header:{'content-type':'application/json'//默认值},success:function(res){if(res.dat...
代码星球
·
2020-03-28
微信
程序
this
指向
作用域
thinkphp5判断移动或pc端访问并调用不同模块
把下面的代码放在appcommon.php公共方法那里。functionisMobile(){if(isset($_SERVER['HTTP_X_WAP_PROFILE'])){returntrue;}if(isset($_SERVER['HTTP_VIA'])){returnstristr($_SERVER['HTT...
代码星球
·
2020-03-28
thinkphp5
判断
移动
pc
访问
thinkphp5实现文章上一篇,下一篇
写在控制器//列表是按照根据id降序排列的,所以上一篇$prv=Db::table('qy_article')->where('at_id','>',$at_id)->where('cate_id',$cate_id)->order('at_idasc')->limit('1')->...
代码星球
·
2020-03-28
一篇
thinkphp5
实现
文章
thinkphp5自定义分页样式
1.在extend目录下创建page目录,在page目录中创建Page.php文件,将以下代码放入文件中<?phpnamespacepage;usethinkPaginator;classPageextendsPaginator{//首页protectedfunctionhome(){if($this->c...
代码星球
·
2020-03-28
thinkphp5
自定义
分页
样式
thinkphp5.1使用支付宝接口(沙箱环境)
接口文件以及沙箱的测试账号可以去支付宝开发中心获取,下面给出一个简单地例子我新建了一个控制器Pay用来专门做支付<?phpnamespaceappindexcontroller;usethinkDb;require_oncedirname(dirname(dirname(dirname(__FILE__))))....
代码星球
·
2020-03-28
thinkphp5.1
使用
支付
接口
沙箱
thinkphp5.1常量定义使用
thinkphp5.1取消了系统常量可以把常量配置在app.php文件中//配置网站地址'WEB_URL'=>'http://127.0.0.1/tp5',可以使用config()函数直接取出,config('WEB_URL')在模板文件中使用{$Think.config.WEB_URL}...
代码星球
·
2020-03-28
thinkphp5.1
常量
定义
使用
thinkphp5使用第三方没有使用命名空间的类库
特别注意的是,如果你需要调用PHP内置的类库,或者第三方没有使用命名空间的类库,记得在实例化类库的时候加上 //错误的用法$class=newstdClass();$xml=newSimpleXmlElement($xmlstr);//正确的用法$class=newstdClass();$xml=...
代码星球
·
2020-03-28
使用
thinkphp5
第三方
没有
命名
thinkphp实现登录后返回原界面
主要思路还是用session记录原地址,在登录后再跳转回原界面先保存请求login方法界面的urlpublicfunctionsavelogin(){session('returnUrl',$_SERVER['HTTP_REFERER']);}在登录方法最后跳转时控制if($returnUrl=session('ret...
IT猿
·
2020-03-28
thinkphp
实现
登录
回原
界面
首页
上一页
...
213
214
215
216
217
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他