51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#THINKPHP
thinkphp3.2.3 + nginx 配置二级域名
使用的是阿里云centOS.74 第一步:配置urlpathserver{listen80;server_namewww.xxxx.comxxxx.com;root/data/www/xxxx;indexindex.phpindex.htmlindex.htm;location/{if(!-e$request...
代码星球
·
2021-02-14
thinkphp3.2.3
nginx
配置
二级域名
thinkphp3.2.3定时任务 不能获取本模块config, 不能获取本模块的其他配置
一开始创建就有一个home模块再创建一个Data模块定时任务在/Application/Common/Conf/crons.php中,这里不讲怎么创建定时任务。Data模块的配置文件路径如下/Application/Data/Conf/config.php定时任务中的逻辑是会调用Data模块的代码,竟然无法读取到Dat...
代码星球
·
2021-02-14
不能
获取
模块
thinkphp3.2.3
定时
thinkphp getField("xxxxx", true); 得到一个字段所有值组成的的数组
很多时候我们只需要一张表里某个字段的值,组成的数组$Channel=D('channel');$channelList=$Channel->order('user_name')->getField("source",true); //不带true只能查到一个值echojson_enco...
代码星球
·
2021-02-14
thinkphp
getField
quotxxxxx
quot
true
thinkphp 模板中得到controller name,得到当前文件路径
<li><ahref="/Admin/account"<eqname="Think.CONTROLLER_NAME"value="Admin">class="selectMainNavItem"</eq>>管理员功能</a></li>-------...
代码星球
·
2021-02-14
得到
thinkphp
模板
controller
name
thinkphp <eq> <if>标签 condition中可以写PHP的判断逻辑
<ul><volistname="monthArray"id="monthItem"><ifcondition="$monthItemeqI('get.monthParam')"><li><ahref="{:U('accountInfo',array('monthP...
代码星球
·
2021-02-14
thinkphp
标签
condition
可以
PHP
thinkphp3.2.3 定时任务重新加载, 无法加载新的定时任务的问题
thinkphp3.2.3的定时任务有个坑,一旦你改名定时任何或者路径,新的定时任务将无法加载,无论你重启php还是重启nginx,甚至重启服务器,都不行。原因是你要删掉一个类似lock文件,才可以修改或加载新的定时任务 3.2.3糟心的CronRunBehavior源码 ...
代码星球
·
2021-02-14
定时
任务
加载
thinkphp3.2.3
重新
thinkphp接收阿里淘宝客数据
坑在于淘宝客api返回的数据对象是SimpleXMLElementObject类型,不转为php的jsonarray类型数据直接扔到thinkphp循环输出中会达不到要的效果,奇奇怪怪的数组,一度怀疑是html循环赋值有问题,最后终于怀疑到数据格式。 得到淘宝客的数据口,轻松将SimpleXMLElement...
代码星球
·
2021-02-14
thinkphp
接收
阿里
淘宝
数据
centOS7.4 thinkPHP nginx 支持pathinfo和rewrite
server{listen80;server_namewww.demo.commayifanx.com;root/data/www/demo;indexindex.phpindex.htmlindex.htm;#红色部分支持rewritelocation/{if(!-e$request_filename){rewrit...
代码星球
·
2021-02-14
centOS7.4
thinkPHP
nginx
支持
pathinfo
关于微信扫码登录的2种解决办法thinkphp5
关于微信扫码登录的2种解决办法1因为之前写过微信的扫码登录所以朋友有这个需求的时候我直接让他去微信开放平台去注册https://open.weixin.qq.com/ 当然是这里了,因为是网站上的需求所以https://developers.weixin.qq.com/doc/oplatform/...
代码星球
·
2021-02-11
关于
微信
扫码
登录
2种
thinkphp5中的系统文件上传和$_FILES用法区别
thinkphp5中的系统文件上传和$_FILES用法区别$aa=request()->file('file');$bb=$aa->getInfo();后面的file是文件的名字$bb等同于$_FILES['file']file是上传的文件名...
代码星球
·
2021-02-11
thinkphp5
中的
系统
文件
上传
thinkphp5获取富文本数据的处理
thinkphp5获取富文本数据的处理thinkphp5自带的input或者默认的Request::instance()->post()都是自带过滤所以用富文本提交的参数会被自动过滤请使用一下$all=Request::instance()->post(false);来获取所有的post参数比如$conte...
代码星球
·
2021-02-11
thinkphp5
获取
文本
数据
处理
thinkphp5集成阿里云oss块存储过程github下载
1配置说明$config['KeyId']='11'; //accesskeyid$config['KeySecret']='222';//accesssecret$config['Bucket']='tyjyvideo';//相当于子域名$config['Endpoint']='http://oss-cn-...
代码星球
·
2021-02-11
thinkphp5
集成
阿里
oss
存储
thinkphp5中引入第三方扩展的方法extend
thinkphp5中引入第三方扩展的方法extend玩的还是phpexcel目录里面的文件夹是 使用方法1控制器顶部加入usethinkLoader;2控制器的函数里面 Loader::import("phpexcel.PHPExcel"); 整个文件代码<?phpnamespace...
代码星球
·
2021-02-11
thinkphp5
引入
第三方
扩展
方法
thinkphp5集成phpexcel的导出方法
之前用过很多次后来折腾了好久这次记录下来1下载phpexcel在这里直接下https://github.com/PHPOffice/PHPExcel 2下载后解压在thinkphp的vendor目录新建文件夹 phpexcel然后把解压后的classes里面的文件拷贝到phpexcel里面效果如图&...
代码星球
·
2021-02-11
thinkphp5
集成
phpexcel
导出
方法
thinkphp使用phpword生成word文档自动下载 有图片
我给封装成函数了 加一些注释functionexpordWord($data,$title){vendor("PHPWord.PHPWord");//NewWordDocument$PHPWord=newPHPWord();header("Content-Type:text/html;charset=UTF-...
代码星球
·
2021-02-11
thinkphp
使用
phpword
生成
word
首页
上一页
...
2
3
4
5
6
...
下一页
尾页
按字母分类:
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
其他