网站大量收购独家精品文档,联系QQ:2885784924

thinkphp笔记(ThinkPHP笔记).doc

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

文档评论(0)

f8r9t5c + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:8000054077000003

1亿VIP精品文档

相关文档