thinkphp
aaeba8a565
改进模型类的checkAllowField方法
2017-06-28 23:37:29 +08:00
thinkphp
a27f5299df
改进模型的save方法 避免allowField方法影响而删除数据
2017-06-27 08:17:53 +08:00
thinkphp
e40a795b43
修正whereNotLike方法
2017-06-25 10:41:51 +08:00
thinkphp
946845e0f4
代码改进
2017-06-23 14:48:38 +08:00
thinkphp
915c46c4bd
修正多对多默认的中间表获取
2017-06-23 14:05:28 +08:00
thinkphp
e427ae5776
注释修正
2017-06-23 12:28:31 +08:00
thinkphp
414e6d6a11
response_start位置更改为response_send
2017-06-23 12:27:03 +08:00
thinkphp
3e62fe152f
增加response_start标签位 路由增加response方法用于绑定response处理行为
2017-06-23 12:14:23 +08:00
thinkphp
e9db7847d3
改进更新后的模型update_time数据更新
2017-06-22 18:13:05 +08:00
thinkphp
d30316efda
model类增加removeRelation方法
2017-06-19 15:27:55 +08:00
ThinkPHP
381fb1fef8
Apply fixes from StyleCI
2017-06-16 09:04:19 +08:00
Axios
bdc9c6a07f
library/think/Log.php 161行添加log存储完成行为监听
...
我在进行多进程异步通信操作时,需要回收子进程,但是又不要影响日志输出,试了官方给出各个行为监听,都会中断log输出。我希望在这里加一个log存储完成的行为监听,这样就可以在log存储完成后,进行子进程回收工作。
2017-06-16 08:38:59 +08:00
thinkphp
b50084099b
改进
2017-06-14 16:21:41 +08:00
thinkphp
274666f7c5
改进redirect
2017-06-14 16:16:18 +08:00
thinkphp
3985a63c67
Merge branch 'master' of https://github.com/top-think/framework
2017-06-12 11:04:40 +08:00
thinkphp
9a53fc7934
改进配置文件读取
2017-06-12 11:04:13 +08:00
thinkphp
b19f6baf1a
改进Build类
2017-06-10 19:52:14 +08:00
thinkphp
0e2bab2804
模型类增加setInc和setDec方法
2017-06-09 15:35:33 +08:00
Heyu
45d105cec0
修复配置extra目录临时文件名中含CONF_EXT(如 vi 的 .swp 文件)被错误加载导致报错的问题
2017-06-09 12:41:21 +08:00
thinkphp
8a5ad4b79b
修正
2017-06-07 13:00:37 +08:00
thinkphp
46589692eb
模型类增加autoWriteTimestamp方法动态设置时间字段写入
2017-06-07 12:58:34 +08:00
thinkphp
46620b541b
改进断线重连判断
2017-06-07 08:53:14 +08:00
thinkphp
08e42118f6
改进多对多的数据更新
2017-06-05 11:24:33 +08:00
thinkphp
e5a24df10d
修正注释
2017-06-03 12:09:28 +08:00
thinkphp
cdfd18a0bd
改进环境变量的布尔值读取
2017-06-03 11:04:15 +08:00
thinkphp
93e25ef386
修正Model
2017-06-01 23:07:37 +08:00
thinkphp
8271eea091
改进BelongsToMany关联查询
2017-06-01 16:49:21 +08:00
thinkphp
05837a9590
Merge branch 'master' of https://github.com/top-think/framework
2017-06-01 16:22:18 +08:00
thinkphp
fa36ae58ba
改进Url类的域名传入
2017-06-01 16:21:45 +08:00
thinkphp
73cafb95dc
修正Query类的value和column方法
2017-05-29 09:30:00 +08:00
thinkphp
1bb78d11b7
改进in查询的去重问题
2017-05-27 22:41:39 +08:00
thinkphp
d7394e29df
修正注释
2017-05-27 10:38:34 +08:00
thinkphp
30cc49abc7
调整模型的save方法before_update检查位置
2017-05-25 11:04:37 +08:00
thinkphp
d22b666540
修正命令行文件生成
2017-05-25 10:48:23 +08:00
thinkphp
2f1a284d3b
改进
2017-05-23 16:42:04 +08:00
thinkphp
4ceb4f4d95
Url类改进
2017-05-22 15:46:02 +08:00
thinkphp
ab2222b100
改进命令行下面的URL生成
2017-05-22 14:43:42 +08:00
thinkphp
8b2a7546e0
Merge branch 'master' of https://git.topthink.com/topteam/framework
2017-05-22 12:40:26 +08:00
thinkphp
bb3cfae0a6
添加default_url_root参数设置默认URL根地址
2017-05-22 12:39:46 +08:00
fangrenfu
37ff5677dc
修正join其他表时生成的delete语句错误。
...
Db::table('a')->join('b','a.map=b.id')
->where('b.id=1')->delete();
生成的语句是
delete from a inner join b on a.map=b.id where b.id=1 //这在mssql中存在语法错误!
正确的语句应该是delete from a from a inner join b on a.map=b.id where b.id=1
希望采纳!
2017-05-20 22:50:04 -05:00
thinkphp
c34a9153e3
修正远程一对多
2017-05-21 09:23:47 +08:00
thinkphp
253f2bfc7b
insertall支持replace
2017-05-21 00:35:25 +08:00
liuyaya
91bc1761b4
注释优化
2017-05-20 11:16:47 -05:00
thinkphp
7deea9dd07
改进Query类
2017-05-20 23:22:23 +08:00
thinkphp
24ae4b9042
版本更新
v5.0.9
2017-05-20 18:43:04 +08:00
thinkphp
a45586ad02
改进模型类的save方法
2017-05-20 14:47:42 +08:00
thinkphp
53a819ff5b
改进save方法
2017-05-19 23:32:33 +08:00
thinkphp
c14988ee84
改进事务的断线重连
2017-05-19 11:27:23 +08:00
thinkphp
23883590c4
模型的数据不受allowfield影响
2017-05-18 16:21:13 +08:00
thinkphp
993cda07a6
改进Collection类的column方法
2017-05-18 14:26:08 +08:00