#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

在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

使用PPA在Ubuntu上安装php5.4~5.6,7

 sudoapt-getinstallsoftware-properties-commonsudoadd-apt-repositoryppa:ondrej/php5-5.6sudoapt-getupdatesudoapt-getupgradesudoapt-getinstallphp5  如果你想安装PHP的...

thinkphp5报错

 (2018-07-1922:05:27)转载▼ 分类: linuxphp报错PHPWarning:  require():open_basedirrestrictionineffect.File(/home/wwwroot/xxx.com/vendor/autoloa...
代码星球 ·2020-04-02

thinkphp5使用Markdown编辑器Editor.md并上传图片

Editor.md官网:https://pandao.github.io/editor.md/index.html下载后解压放到项目内,和引入ueditor差不多1、引入项目资源<!--markdown编辑器--><scriptsrc="{$Think.config.__STATIC__}/admin...

thinkphp5使用uploadify

uploadifyflash版本下载地址:http://www.uploadify.com/wp-content/uploads/files/uploadify.zip将解压后的文件放入项目公共文件中,我放在项目中的地址是:cmspublicstaticadminplusuploadify,cms是我的项目文件夹首先引...
代码星球 ·2020-03-28

thinkphp5使用querylist采集图片示例

首先composer引入querylistcomposerrequirejaeger/querylist注意需要php7.0以上版本<?phpnamespaceappindexcontroller;usethinkController;useQLQueryList;classIndex{publicfunctio...

再看thinkphp5分页类使用

之前使用tp5的分页paginate类时只用到了第一个参数,也就是每页显示多少行今天又仔细看了下手册和paginate类,发现paginate可传入的参数有很多,可以满足更多需求比如可以指定分页的数据,可以使用重写的分页类等。。。下面是tp5.1的分页类/***分页查询*@accesspublic*@paramint|...

thinkphp5无限极分类

publicfunctionpriTree(){$data=$this->select();return$this->_reSort($data);}//递归对有的分类进行重新排序privatefunction_reSort($data,$cate_pid=0,$level=0){static$ret=ar...
代码星球 ·2020-03-28

关于thinkphp5中数据库分组查询group

在使用tp5的group进行分组查询总是报错,以主键进行分组是不报错,但没有任何意义与聚合函数一起使用的不会报错,如官方文档给出的代码Db::table('think_user')->field('user_id,username,max(score)')->group('user_id')->sel...

thinkphp5判断移动或pc端访问并调用不同模块

把下面的代码放在appcommon.php公共方法那里。functionisMobile(){if(isset($_SERVER['HTTP_X_WAP_PROFILE'])){returntrue;}if(isset($_SERVER['HTTP_VIA'])){returnstristr($_SERVER['HTT...

thinkphp5实现文章上一篇,下一篇

写在控制器//列表是按照根据id降序排列的,所以上一篇$prv=Db::table('qy_article')->where('at_id','>',$at_id)->where('cate_id',$cate_id)->order('at_idasc')->limit('1')->...

thinkphp5自定义分页样式

1.在extend目录下创建page目录,在page目录中创建Page.php文件,将以下代码放入文件中<?phpnamespacepage;usethinkPaginator;classPageextendsPaginator{//首页protectedfunctionhome(){if($this->c...

thinkphp5.1使用支付宝接口(沙箱环境)

接口文件以及沙箱的测试账号可以去支付宝开发中心获取,下面给出一个简单地例子我新建了一个控制器Pay用来专门做支付<?phpnamespaceappindexcontroller;usethinkDb;require_oncedirname(dirname(dirname(dirname(__FILE__))))....

thinkphp5.1常量定义使用

thinkphp5.1取消了系统常量可以把常量配置在app.php文件中//配置网站地址'WEB_URL'=>'http://127.0.0.1/tp5',可以使用config()函数直接取出,config('WEB_URL')在模板文件中使用{$Think.config.WEB_URL}...
首页上一页...910111213下一页尾页