插入方法:Insert API-Medoo使用指南

≡放荡痞女 提交于 2019-12-06 19:55:33

上一篇《选取方法:Select API-Medoo使用指南》中介绍了Medoo的Select方法,主要说明了查询字段和表连接的使用方法,本篇将介绍如何使用Insert方法把数据写入到数据库。

插入方法:Insert

插入新记录到DB的表中。

insert($table, $data)
//table [string]: 表名
//data [array]:将要保存到DB中的数据.


返回值: [number]  插入DB中的最后一条记录的id

 提示:你可以直接插入数组数据,不需要序列化,因为Medoo会自动处理。

$database = new medoo("my_database");
 
$last_user_id = $database->insert("account", [
	"user_name" => "foo",
	"email" => "foo@bar.com",
	"age" => 25,
	"lang" => ["en", "fr", "jp", "cn"]
]);
 
// 多条记录插入 (自Medoo 0.9起支持)
$last_user_id = $database->insert("account", [
[
	"user_name" => "foo",
	"email" => "foo@bar.com",
	"age" => 25,
	"city" => "New York",
	"lang" => ["en", "fr", "jp", "cn"]
],
[
	"user_name" => "bar",
	"email" => "bar@foo.com",
	"age" => 14,
	"city" => "Hong Kong",
	"lang" => ["en", "jp", "cn"]
]);


原文标题: 插入方法:Insert API-Medoo使用指南

原文链接: http://loiy.net/post/576.html


易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!