bindParam()
thứ hai của bạn (Bạn nên đọc và hiểu chính xác phương pháp này làm gì!) Bên trong if
điều kiện là vô nghĩa!
Thay đổi điều này:
if($stmt->rowCount() > 0){
$stmt->bindParam($badgeid, $email, $fullname, $roles_id, $team_id);
$stmt->fetch();
$user = array(
'badgeid'=>$badgeid,
'email'=>$email,
'fullname'=>$fullname,
'roles_id'=>$roles_id,
'team_id'=>$team_id
);
về điều này:
$result = $stmt->fetch(\PDO::FETCH_ASSOC); // Get results as array
if ($result) {
// Since we only get the fields we want to send back, you can assign `$result` directly to `$response['user']`
$response['user'] = $result;
PHP đã gặp một lỗi liên quan mà bạn sẽ thấy trong phản hồi thô của yêu cầu của bạn!