取得方法:Get API-Medoo使用指南

谁都会走 提交于 2019-12-06 03:24:04

上一篇《替换方法:Replace API-Medoo使用指南》中介绍了如何使用Medoo的Replace方法把数据库中的旧数据替换成新的,本篇将教你使用Get方法来取得数据库中的单条记录。

取得方法:Get

取得数据库中的单条记录。

get($table, $columns, $where)
//table [string]: 表名
//columns [string/array]: 将要获取的数据的目标字段
//where (可选) [array]:WHERE子句筛选记录


返回值: [string/array]:返回所设定的字段的数据

 提示:这个函数只能获取取得一条记录。

$database = new medoo("my_database");
 
$email = $database->get("account", "email", [
	"user_id" => 1234
]);
 
// $email = "foo@bar.com"
 
$profile = $database->get("account", [
	"email",
	"gender",
	"location"
], [
	"user_id" => 1234
]);
 
// $profile = array(
// 	"email" => "foo@bar.com",
// 	"gender" => "female",
// 	"location" => "earth"
// )


Medoo版本: 0.9.1.1 

原文标题: 取得方法:Get API-Medoo使用指南 

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


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