ThinkPHP write array insert and get the latest inserted data ID instance, thinkphp instance

Source: Internet
Author: User

ThinkPHP write array insert and get the latest inserted data ID instance, thinkphp instance

This article describes how thinkphp writes an array to insert and obtains the latest inserted data ID. Share it with you for your reference. The specific method is analyzed as follows:

This example describes how thinkphp writes array insert by itself. Here we use registered users as an example.

The specific implementation code is as follows:
Copy codeThe Code is as follows: public function insert2 (){
Header ("Content-Type: text/html; charset = UTF-8 ");
$ Dao = M ("User"); // construct the written data array
$ Data ["username"] =$ _ POST ["username"];
$ Data ["password"] = md5 ($ _ POST ["password"];);
$ Data ["email"] =_ _ POST ["email"];
$ Data ["regdate"] = time (); // write data
If ($ lastInsId = $ Dao-> add ($ data) {// $ lastInsId is the id of the latest inserted data
Echo "insert data id: $ lastInsId ";
} Else {
$ This-> error ('data writing error! ');
}
}

I hope this article will help you with ThinkPHP framework programming.


Thinkphp writes a data entry and obtains the ID of the data entry.

It's very easy. If you have already inserted
$ Res = the insert statement is executed;
If ($ res)
{
$ Session ['id'] = $ res ['id']
Successful operations
}

Does thinkphp return the function for inserting data IDs?

Generally, inserting a piece of data will return the id of the Data. You can directly define a variable to store it.
$ Map is an array
$ Id = D ('user')-> add ($ map );
This $ id is the id of the inserted data.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.