Medoo

开始

Where 语句

查询

Transaction

原生SQL查询

PDO object

Debug

数据库信息

get

从表中返回一行数据

get($table, $columns, $where)
Return: [string/array] 返回查询到的数据.
这个方法只能获取一条数据
$email = $database->get("account", "email", [
    "user_id" => 1234
]);

// $email = "[email protected]"

$profile = $database->get("account", [
    "email",
    "gender",
    "location"
], [
    "user_id" => 1234
]);

// $profile = array(
//  "email" => "[email protected]",
//  "gender" => "female",
//  "location" => "earth"
// )