PHP-如果route返回字符串,则不会进入循环

时间:2019-03-26 14:18:11

标签: php pdo slim notorm

我正在设置一个小型Web服务,如果在数据库上找到用户,则应返回true,如果找不到用户,则应返回false。但是它始终返回false。 实际上,如果我在echoforeach上的任何内容都不会返回任何内容,并且如果我回显$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);
    }


});

问题是我要从路由中获取字符串吗? 如果是这样,我该如何纠正?

1 个答案:

答案 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
])