我正在设置一个小型Web服务,如果在数据库上找到用户,则应返回true
,如果找不到用户,则应返回false
。但是它始终返回false
。
实际上,如果我在echo
上foreach
上的任何内容都不会返回任何内容,并且如果我回显$data
则会得到Undefined variable: data
我尝试用id搜索,看来很好
例如,如果我使用/api/users/login/{id}
的路由进行测试,并将foreach
更改为foreach($db->user()->select('username', 'pass')->where('id', $id) as $row)
,它将正确执行。
$app->get('/api/users/login/{username}/{password}', function($request){
$username = $request -> getAttribute('username');
$password = $request -> getAttribute('pass');
$id = $request->getAttribute('id');
require_once('db/dbconnect.php');
foreach($db->user()->select('username', 'pass')->where('username', 'pass', $username, $password) as $row){
$data[] = $row;
}
if(isset($data)){
echo json_encode(true, JSON_UNESCAPED_UNICODE);
}else{
echo json_encode(false, JSON_UNESCAPED_UNICODE);
}
});
问题是我要从路由中获取字符串吗? 如果是这样,我该如何纠正?
答案 0 :(得分:1)
您对where()
的使用是不正确的,您应该在一系列条件下使用它。
来自api:
$table->where(array("field" => "x", "field2" => "y"))
已翻译为
field = 'x' AND field2 = 'y'
(具有自动转义)
$db->user()->select('username', 'pass')->where([
'username' => $username,
'pass' => $password
])