thinkPHP5 implements the method of adding content to database
This article mainly introduces the method of adding content to the database in thinkPHP5. It analyzes the configuration, model, controller use and data insertion related operation skills of thinkPHP5 database in detail in the form of examples. Friends in need can refer to the following
The example in this article describes how thinkPHP5 implements adding content to the database. I share it with you for your reference. The details are as follows:
When a new framework is installed, I usually don’t know what to do. Then make a write function first.
Make preparations first, first connect to the database.
The configuration file is in database.php under application
return [ // 数据库类型 'type' => 'mysql', // 服务器地址 'hostname' => '127.0.0.1', // 数据库名 'database' => 'shoptest', // 用户名 'username' => 'root', // 密码 'password' => '', // 端口 'hostport' => '3306', // 连接dsn 'dsn' => '', // 数据库连接参数 'params' => [], // 数据库编码默认采用utf8 'charset' => 'utf8', // 数据库表前缀 'prefix' => '', // 数据库调试模式 'debug' => true, // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器) 'deploy' => 0, // 数据库读写是否分离 主从式有效 'rw_separate' => false, // 读写分离后 主服务器数量 'master_num' => 1, // 指定从服务器序号 'slave_no' => '', // 是否严格检查字段是否存在 'fields_strict' => true, // 数据集返回类型 'resultset_type' => 'array', // 自动写入时间戳字段 'auto_timestamp' => false, // 时间字段取出后的默认时间格式 'datetime_format' => 'Y-m-d H:i:s', // 是否需要进行SQL性能分析 'sql_explain' => false, ];
After setting it up, leave it alone and create a controller first
In the default downloaded collection, there is an index folder in the application folder.
It is a folder used to store controllers, classes and templates, and the name can be modified.
If you have used 3.2, it will be easy to understand, it is equivalent to the original home file.
First create three folders in this folder
#Then create a new index.php file in the controller folder (actually there is one by default one).
Write code like this in the class class
public function indexs() { return '我打开控制器了'; }
Enter the server name/index/index/indexs in the URL bar
You can see a line of text.
Add it and introduce the template first.
First add use think\View; and introduce the template library.
$view = new View; return $view->fetch('模板名');
So where to put the template. The controller folder has a view folder
If you drag the template file directly into it, an error will be reported.
Look at the second half of the error path. /application/index\view\index\adda.html
application/index/view can be found
Then there is another folder name and file name.
This folder corresponds to the name of the controller, which means a corresponding folder must be created. Then drag the template in to call it. Of course, a complete framework will not only have this method. Other details will be studied later.
Two commonly used ways of writing form submissions, input('post.xxx') refers to getting the post value.
//调用Db类 use think\Db; $data = ['title' => input('post.title'), 'content' => input('post.title')]; Db::table('blogmsg')->insert($data); //建立model的写法 $mod = new \app\index\model\Blogmsg; $mod->title = input('post.title'); $mod->content = input('post.content'); $mod->save(); echo $mod->id;
Relatively speaking, I personally prefer this way of writing. Use Request to complete the addition. (It will be good for using laravel in the future)
//引入Request。 use think\Request; public function add(Request $req){ //如果添加的内容需要处理,先单独取出然后赋值进去($req->post('title')可以获取其中的值) $a = rtrim($req->post('title'),' '); $req->post(['title'=>$a]); //准备添加 $mod = new \app\index\model\Blogmsg; //allowField可以选择只添加哪些字段。 $mod->allowField(['title','content'])->save($req->post()); //获取返回的主键 echo $mod->id; }
When it comes to adding data, automatic verification is definitely needed.
This time the automatic verification can be written in a separate file. Create a Validate folder in the index folder, and create a php file with the same name as the Model folder inside. easy to use.
Sample
namespace app\index\validate; use think\Validate; class Blogmsg extends Validate { //写规则 protected $rule = [ 'title' => 'require|max:25', 'content' => 'require|max:255', ]; //写报错返回信息 protected $message = [ 'title.require' => '必须填写', 'title.max' => '不能超过25个字符', 'content.require' => '必须填写', 'content.max' => '不能超过255个字符', ]; protected $scene = [ 'add' => ['title','content'], 'edit' => ['title','content'], ]; }
Then changes to the controller part
$a = $mod->validate(true)->allowField(['title','content'])->save($req->post()); if(false === $a){ // 验证失败 输出错误信息 dump($mod->getError()); die; }
Finally, create a form token function to prevent repeated submissions and remote submissions: add {:token()} to the form form in the template, then make modifications to the verification rules, and add a token to the verification rules. As follows:
'title' => 'require|max:25|token',
At this point, the addition of the article comes to an end.
The above is the entire content of this article. Thank you everyone for reading. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
thinkphp3.2.3 version database addition, deletion, modification and query implementation code
##PHP implements sending and receiving JSON ask
The above is the detailed content of thinkPHP5 implements the method of adding content to database. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Go language is an efficient, concise and easy-to-learn programming language. It is favored by developers because of its advantages in concurrent programming and network programming. In actual development, database operations are an indispensable part. This article will introduce how to use Go language to implement database addition, deletion, modification and query operations. In Go language, we usually use third-party libraries to operate databases, such as commonly used sql packages, gorm, etc. Here we take the sql package as an example to introduce how to implement the addition, deletion, modification and query operations of the database. Assume we are using a MySQL database.

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

Hibernate polymorphic mapping can map inherited classes to the database and provides the following mapping types: joined-subclass: Create a separate table for the subclass, including all columns of the parent class. table-per-class: Create a separate table for subclasses, containing only subclass-specific columns. union-subclass: similar to joined-subclass, but the parent class table unions all subclass columns.

HTML cannot read the database directly, but it can be achieved through JavaScript and AJAX. The steps include establishing a database connection, sending a query, processing the response, and updating the page. This article provides a practical example of using JavaScript, AJAX and PHP to read data from a MySQL database, showing how to dynamically display query results in an HTML page. This example uses XMLHttpRequest to establish a database connection, send a query and process the response, thereby filling data into page elements and realizing the function of HTML reading the database.

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

PHP is a back-end programming language widely used in website development. It has powerful database operation functions and is often used to interact with databases such as MySQL. However, due to the complexity of Chinese character encoding, problems often arise when dealing with Chinese garbled characters in the database. This article will introduce the skills and practices of PHP in handling Chinese garbled characters in databases, including common causes of garbled characters, solutions and specific code examples. Common reasons for garbled characters are incorrect database character set settings: the correct character set needs to be selected when creating the database, such as utf8 or u

Through the Go standard library database/sql package, you can connect to remote databases such as MySQL, PostgreSQL or SQLite: create a connection string containing database connection information. Use the sql.Open() function to open a database connection. Perform database operations such as SQL queries and insert operations. Use defer to close the database connection to release resources.
