- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
thinkphp笔记(ThinkPHP笔记)
thinkphp笔记(ThinkPHP笔记)
Regular expressions require escape symbols that are: * + + ^ $() / \ \ {{}
MySQL looks at the table structure show, columns, from, test.user, or describe (DESC) table name column names
Thinkphp related knowledge points
Example of the use of the model can operate on the data, the operation of the general database is to add and delete to check CURD
Add -C, Create, $m-add () - returns the ID number of the new data
Delete -D, Delete, $m-delete () - returns the number of affected rows
Change -U, Update, $m-save () - returns the number of affected rows
Check -R, Read, $m-select ()
Two, ThinkPHP 3 read data (focus)
Read data, Read
$m=new Model (User);
$m=M (User);
Select
($m-select); / / get all the data in an array of return
Find
$m-find ($id); / / get a single data
GetField (field) / / get a specific field value
$arr=$m-where (id=2) -getField (username);
Three, ThinkPHP 3 create data (focus)
Add data to Create
$m=new Model (User);
$m=M (User);
$m- field name = value
$m-add ();
The return value is the new ID number
Four, ThinkPHP 3 delete data (focus)
$m=M (User);
$m-delete (2); / / delete ID 2 data
$m-where (id=2) (-delete); / / the same as above, and delete the ID 2 data
The return value is the number of affected rows
Five, ThinkPHP 3 update data (key)
$m=M (User);
$data[id]=1;
$data[username]=ztz2;
$m-save ($data);
The return value is the number of affected rows
Templates can walk through arrays
volist name=dataid=vo
{$vo.id}----{$vo.username}-----{$vo.sex}br/
/volist
Inquiry mode:
I. General inquiry method
A, string
$arr=$m-where (sex=0 and username=gege) -find ();
B and array
$data[sex]=0;
$data[username]=gege;
$arr=$m-where ($data) -find ();
Note: this way the default is the and relationship, and if you use the or relationship, you need to add the array value
$data[sex]=0;
$data[username]=gege;
$data[_logic]=or;
Two, expression inquiry method
$data[id]=array (lt, 6);
$arr=$m-where ($data) -select ();
EQ equals
NEQ is not equal to
GT greater th
您可能关注的文档
- cosmic_website 蛋白质(cosmic_website蛋白质).doc
- const常量折叠的一些问题(Some problems of folding const constants).doc
- cos教程之化妆技巧(Makeup skills for cos tutorials).doc
- cosplay化妆教程(cosplay化妆教程).doc
- conan主线情节清单001~504(Conan mainline plot list 001~504).doc
- cpl类型文件为控制面板扩展命令(The CPL type file expands the command for the control panel).doc
- cpu和内存频率关系,很通俗的,对菜鸟很有帮助(CPU and memory frequency relation, very popular, very helpful to the novice).doc
- cqe考试经验小结(Summary of CQE test experience).doc
- csol抽密码箱技巧(CSOL password box skills).doc
- css hack,css 浏览器兼容问题(css hack, css 浏览器兼容问题).doc
- ue快捷键(UE shortcut key).doc
- ug快捷键大全(UG keyboard shortcuts).doc
- that做关系代词用法(That makes use of relative pronouns).doc
- ultraedit高级教程(UltraEdit高级教程).doc
- translate_american_stories-short_story__the_tell_tale_heart(translate_american_stories-short_story__the_tell_tale_heart).doc
- uml2考试题(UML2 examination questions).doc
- uml9种图模型(Uml9 diagram model).doc
- unicode字符列表(Unicode character list).doc
- unit 1 how do you study for a test(1你如何为考试而学习).doc
- Unit 10 五年级下册(单元10五年级下册).doc
文档评论(0)