- 1、本文档共18页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
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
文档评论(0)