51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#thin
thinkphp的执行流程
加载的执行流程如下图 ...
代码星球
·
2021-02-15
thinkphp
执行
流程
Thinkphp5高级进阶教程
https://www.kancloud.cn/mikkle/thinkphp5_study/331362...
代码星球
·
2021-02-15
Thinkphp5
高级
进阶
教程
thinkphp5控制器不存在的问题
...
代码星球
·
2021-02-15
thinkphp5
控制器
不存
在的
问题
SQLSTATE[HY000]: General error: 1030 Got error 28 from storage engine thinkphp报错
SQLSTATE[HY000]:Generalerror:1030Goterror28fromstorageengine 用行云海CMS时发现的问题,检查后发现是磁盘容量满了导致的...
代码星球
·
2021-02-15
error
SQLSTATE
HY000
General
1030
ThinkPHP扩展函数的三个方法
1.在Common文件中新建的Common.php并把代码写入该文档然后在indexAction.php中直接写函数名 然后在indexAction.php中: 2.临时性加载:在indexAction.php中使用load(‘’);示例:load('@.某函数的文件名'...
代码星球
·
2021-02-15
ThinkPHP
扩展
函数
三个
方法
【Thinkphp 5】auth权限设置以及实现
1.将auth类下载好放置目录:extendauthauth.php2.将类中的SQL语句执行,可以在数据库中创建3张表 auth_group(用户组表) auth_rule(权限规则表) &n...
代码星球
·
2021-02-15
Thinkphp
auth
权限
设置
以及
【Thinkphp 5】 整合邮箱类 phpmailer实现邮件发送
第一步:下载phpmailer文件,主要用到的文件只有箭头指向的两个,thinkphp5中,把class.phpmailer.php改成了phpmailer.php第二步:将phpmailer文件夹放到extend 扩展类库目录(可定义)中第三步:打开phpmailer.php和class.smtp.php文...
代码星球
·
2021-02-15
Thinkphp
整合
邮箱
phpmailer
实现
【Thinkphp 5】 如何引入extend拓展文件
extend/maile/cc.php文件目录cc文件必须要加上命名空间,如下cc.php文件内容如下:1namespacemaile;//命名空间maile是文件夹名称2classCc{//类名3 publicfunctionac(){4 echo"chengjing";5 }6} 控制器中试用1us...
代码星球
·
2021-02-15
Thinkphp
如何
引入
extend
拓展
centos7.4 在thinkphp中 使用定时任务crontab
几个关于crontab的命令systemctl restart crond.service #启动服务 systemctl reload crond.service #重新载入配置 syste...
代码星球
·
2021-02-14
centos7.4
thinkphp
使用
定时
任务
thinkphp批量插入 更新sql
本表7个字段,有4个字段需要更新M('tableName')->startTrans();for(){M('tableName')->save();//orM('tableName')->add();}M('tableName')->commit();======================...
代码星球
·
2021-02-14
thinkphp
批量
插入
更新
sql
ThinkPHP3.2.3 目录介绍
ThinkPHP3.2.3 目录介绍,在开发中主要操作的目录就是在入口文件www/index.php中定义的www/application/文件目录了。www WEB部署目录├─index.php 入口文件...
代码星球
·
2021-02-14
ThinkPHP3.2.3
目录
介绍
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
首页
上一页
...
3
4
5
6
7
...
下一页
尾页
按字母分类:
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
其他