Get-API

取得方法: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", //