duanlu1279 2016-02-28 17:16
浏览 84
已采纳

动态PDO查询中的整数值[重复]

This question already has an answer here:

I'm trying to use a dynamic PDO query (add where clause to the query if the variable is true) but i have a problem with integers values, this is my code:

$params = array();
$cond = array();

$query = "SELECT value FROM `table`";

if (!empty($firstname)) {
    $cond[] = "firstname = :fn";
    $params[':fn'] = $firstname;
}
if (!empty($lastname)) {
    $cond[] = "lastname = :ln";
    $params[':ln'] = $lastname;
}
if (count($cond)) {
    $query .= ' WHERE ' . implode(' AND ', $cond);
}

$query .= " LIMIT :min, :max";
$params[':min'] = $min; // INTEGER VALUE
$params[':max'] = $max; // INTEGER VALUE

$stmt = $db->prepare($query);
$stmt->execute($params);

The problem is that PDOStatement::execute treated all values as PDO::PARAM_STR and LIMIT need integer values.

I tried with PDOStatement::bindValue using PDO::PARAM_INT parameter but i don't know how to use it in a dynamic query.

</div>

展开全部

  • 写回答

2条回答 默认 最新

  • doutuichan2681 2016-02-28 17:31
    关注

    You already have an array of keys and values to bind in $params, so after you prepare the statement, loop through it and bind accordingly:

    $params = array();
    $cond = array();
    
    $query = "SELECT value FROM `table`";
    
    if (!empty($firstname)) {
        $cond[] = "firstname = :fn";
        $params[':fn'] = $firstname;
    }
    if (!empty($lastname)) {
        $cond[] = "lastname = :ln";
        $params[':ln'] = $lastname;
    }
    if (count($cond)) {
        $query .= ' WHERE ' . implode(' AND ', $cond);
    }
    
    $query .= " LIMIT :min, :max";
    $params[':min'] = $min; // INTEGER VALUE
    $params[':max'] = $max; // INTEGER VALUE
    
    $stmt = $db->prepare($query);
    
    foreach($params as $key => $value)
    {
        if(is_int($value))
        {
            $stmt->bindValue($key, $value, PDO::PARAM_INT);
        }
        else
        {
            $stmt->bindValue($key, $value, PDO::PARAM_STR);
        }
    }
    
    $stmt->execute($params);
    

    Notice, that you must use bindValue, since bindParam will not work. The PHP manual states why:

    Unlike PDOStatement::bindValue(), the variable is bound as a reference and will only be evaluated at the time that PDOStatement::execute() is called.

    And once a foreach iteration is passed, $value no longer exists and can't be used as a reference. This is precisely the reason you must use bindValue

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部