51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#PHP5
thinkphp5高级查询
$map=[];$map[]=['status','=',1];$map[]=['is_delete',"=",Db::raw(0)];$map[]=['type','=',$type];$whereExp='';$whereExp.="FIND_IN_SET($app_id,app_ids)";$whereExp.=...
代码星球
·
2020-04-02
thinkphp5
高级
查询
在CentOS安装PHP5.6
简单介绍一下,如何在CentOS上安装PHP5.6。追加CentOS6.5的epel及remi源。#rpm-Uvhhttp://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm#rpm-Uvhhttp://rpms.fami...
代码星球
·
2020-04-02
CentOS
安装
PHP5.6
使用PPA在Ubuntu上安装php5.4~5.6,7
sudoapt-getinstallsoftware-properties-commonsudoadd-apt-repositoryppa:ondrej/php5-5.6sudoapt-getupdatesudoapt-getupgradesudoapt-getinstallphp5 如果你想安装PHP的...
代码星球
·
2020-04-02
使用
PPA
Ubuntu
安装
php5.4
thinkphp5报错
(2018-07-1922:05:27)转载▼ 分类: linuxphp报错PHPWarning: require():open_basedirrestrictionineffect.File(/home/wwwroot/xxx.com/vendor/autoloa...
代码星球
·
2020-04-02
thinkphp5
报错
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
分页
使用
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
数据库
分组
查询
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
常量
定义
使用
首页
上一页
...
9
10
11
12
13
下一页
尾页
按字母分类:
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
其他