【问题标题】:False boolean value statement not inserting to database错误的布尔值语句未插入数据库
【发布时间】:2018-01-15 04:04:41
【问题描述】:

我有一个如下所示的 JSON 数组:

{
    "operation": "update_original_team_member",
    "teamMember": {
        "teamMemberPresent": false,
        "unique_id": "5a5b7f6b835408.50059003",
        "user_unique_id": "59bea8b7d56a63.33388595"
    }
}

我正在尝试将它插入 mySQL 数据库,但每次都失败,但是当我将 false 更改为 true 时,它​​可以工作,有什么想法吗?

要插入的表如下:

CREATE TABLE team_member (
    team_member_id int(11) NOT NULL AUTO_INCREMENT,
    unique_id varchar(23) NOT NULL,
    fullName varchar(50) NOT NULL,
    user_unique_id varchar(23) NOT NULL,
    present boolean NOT NULL,
    date_last_present datetime DEFAULT NULL,
    points int(50) NULL,
    team_id int (11) NOT NULL,
     PRIMARY KEY (team_member_id),
     FOREIGN KEY (`team_id`)
    REFERENCES `ocidb_CB9s149919`.`team` (`team_id`)
    );

JSON 数组是从 Retrofit 发送的(Retrofit 是 Android 的 REST 客户端)并按如下方式接收:

if ($operation == 'update_original_team_member') {

            if (isset($data -> teamMember) && !empty($data -> teamMember)&& isset($data -> teamMember -> teamMemberPresent)
                && isset($data -> teamMember -> unique_id)&& isset($data -> teamMember -> user_unique_id)){

              $teamMember                 = $data             -> teamMember;
              $teamMemberPresent          = $teamMember       -> teamMemberPresent;
              $unique_id                  = $teamMember       -> unique_id;
              $user_unique_id             = $teamMember       -> user_unique_id;


              echo $fun -> updatePresent($teamMemberPresent,$unique_id, $user_unique_id);

              } else {


              echo $fun -> getMsgInvalidParam();

            }

这是过去的以下功能:

public function updatePresent($teamMemberPresent,$unique_id, $user_unique_id){

     $db = $this -> db;

     if (!empty ($teamMemberPresent)&& !empty ($unique_id)&& !empty ($user_unique_id)){

         $result = $db -> updatePresent($teamMemberPresent,$unique_id, $user_unique_id);

         if ($result) {

            $response["result"] = "success";
            $response["message"] = "Active Students Have Been Recorded!";
            return json_encode($response);

         } else {

            $response["result"] = "failure";
            $response["message"] = "Unable To Update Details, Please Try Again";
            return json_encode($response);

         }
         } else {

      return $this -> getMsgParamNotEmpty();

            }

}   

我用来更新的查询是:

public function updatePresent($teamMemberPresent,$unique_id, $user_unique_id){



$sql = "UPDATE team_member SET present = :present WHERE unique_id = :unique_id AND user_unique_id = :user_unique_id";


// Prepare statement
$query = $this ->conn ->prepare($sql);

// execute the query
$query->execute(array(':present' => $teamMemberPresent,':unique_id' => $unique_id, ':user_unique_id' => $user_unique_id));

if ($query) {

return true;        

} else {

return false;

    }
 }

我已使用邮递员尝试隔离问题,并将其缩小到 $teamMemberPresent 变量失败,并指出当它作为假时它是空的,但我不知道为什么。正如我之前提到的,当它设置为 true 时,查询工作正常。

非常感谢任何指导。

【问题讨论】:

  • 函数中$teamMemberPresent在被调用时的值是多少?
  • 你怎么称呼updatePresent,你传递给它什么值?没有这些信息,您的问题就无法回答。
  • 值都在JSON数组中(在我问题的开头)

标签: php mysql prepared-statement


【解决方案1】:

在您的updatePresent() 函数中,此代码不会将数据识别为有效数据,并跳过数据库更新:

if (!empty ($teamMemberPresent)&& !empty ($unique_id)&& !empty ($user_unique_id)){
 ... 

原因是empty($teamMemberPresent) 如果其参数具有false 值,则返回true。

http://php.net/empty 说:

如果变量不存在或其值为 FALSE,则认为该变量为空。

您应该改用isset($teamMemberPresent)

这是一个演示:

if (isset($data -> teamMember)
&& !empty($data -> teamMember)
&& isset($data -> teamMember -> teamMemberPresent)
&& isset($data -> teamMember -> unique_id)
&& isset($data -> teamMember -> user_unique_id))
{       
        echo "Should all be OK\n";  

        $teamMember                 = $data             -> teamMember;
        $teamMemberPresent          = $teamMember       -> teamMemberPresent;

        if (!empty($teamMemberPresent)) {
                echo "Confirmed, not empty\n";
        } else {
                echo "Woops! It's empty\n";
        }
}

输出:

Should all be OK
Woops! It's empty

【讨论】:

  • 我刚刚在您建议的部分添加了isset,它已经解决了我的问题!我认为因为我在传递给function updatePresent 之前检查了isset,所以没有必要再次检查它,但显然它是。感谢您的建议,我现在接受您的回答。
【解决方案2】:

将布尔变量转换为 int。

$query->execute(array(':present' => (int) $teamMemberPresent,':unique_id' => $unique_id, ':user_unique_id' => $user_unique_id));
// this one -> (int) $teamMemberPresent

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2016-04-28
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多