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
thinkphp
8cc44f8bf6
改进
2017-05-18 13:59:55 +08:00
thinkphp
1bdd33277c
改进断线的异常判断
2017-05-18 10:34:14 +08:00
thinkphp
faffdee907
改进Request的type方法对image类型的判断 统一返回image
2017-05-16 19:10:06 +08:00
thinkphp
20216368c4
改进数据库驱动
2017-05-16 13:54:26 +08:00
thinkphp
2ee83fff81
Revert "Query类分页查询方法增加total_cache参数配置"
...
This reverts commit 6a550b8cb8 .
2017-05-15 16:55:15 +08:00
thinkphp
6a550b8cb8
Query类分页查询方法增加total_cache参数配置
2017-05-15 16:45:20 +08:00
thinkphp
13a5a3d9b6
改进模型的appendRelationAttr方法
2017-05-14 13:46:02 +08:00
thinkphp
629a194211
改进模型类的destroy方法 传入空数组和null的时候不进行任何删除操作
2017-05-14 12:05:45 +08:00
thinkphp
96f45258cd
改进关联属性的输出
2017-05-14 11:27:41 +08:00
thinkphp
e3665caeeb
修正关联自动写入
2017-05-13 12:15:05 +08:00
thinkphp
17479a6eda
改进命令行的日志切割生成
2017-05-12 15:57:04 +08:00
thinkphp
c78b8deea5
修正
2017-05-12 15:24:37 +08:00
thinkphp
ea83a28d7e
改进分页类的toarray方法 增加总页数
2017-05-12 11:50:48 +08:00
thinkphp
e13c825aa7
比较运算支持使用闭包子查询
2017-05-12 11:03:36 +08:00
thinkphp
c0e666819f
改进Response类 支持手动设置contentType
2017-05-12 10:42:59 +08:00
ThinkCMF
4d594b9336
修复 url 生成时路由规则中的参数没有进行 urlencode
2017-05-12 10:34:35 +08:00
thinkphp
e45d791423
优化db助手函数
2017-05-11 18:55:47 +08:00
thinkphp
ffe7668184
修正单元测试
2017-05-11 18:49:30 +08:00
thinkphp
6e721239ea
改进数据库类的一处不能嵌套查询的缺陷
2017-05-11 18:39:06 +08:00
thinkphp
7576b88c99
修正模型数据变化判断
2017-05-11 14:53:43 +08:00
thinkphp
06f603d737
Merge branch 'master' of https://git.topthink.com/topteam/framework
2017-05-11 14:23:54 +08:00
thinkphp
c0763644f3
修正Query类的useSoftDelete方法返回值
2017-05-11 14:23:09 +08:00
thinkphp
2525774483
Merge branch 'master' of https://git.topthink.com/topteam/framework
2017-05-09 15:39:46 +08:00
thinkphp
513f1f32f7
改进belongstomany的查询字段指定
2017-05-09 15:38:41 +08:00
thinkphp
a9d5851672
修正一对一嵌套关联数组定义的问题
2017-05-08 23:03:39 +08:00
thinkphp
df1b306819
分页类增加each方法
2017-05-06 10:56:24 +08:00
thinkphp
3dda16bbda
改进使用了手动参数绑定的时候 缓存出现问题的情况
2017-05-06 09:35:43 +08:00
thinkphp
bf1ebe8ae1
修正路由分组的路由规则大小写识别问题
2017-05-05 17:40:58 +08:00
thinkphp
fc432d5f5d
修正Model类的save方法
2017-05-05 17:01:14 +08:00