douji2283 2015-05-12 08:34
浏览 94
已采纳

数组在PDO中转换为字符串

Below is my query:

$key = array(1,2);
$in = join(',', array_fill(0, count($key), '?'));
$statement = $pdo->prepare("SELECT * FROM posts WHERE posts.subid IN (".$in.") AND posts.pricing=?  AND posts.Poscode=? ORDER BY posts.Poscode DESC LIMIT 60");
$result = array_merge($key, array($rate,$postcode));
$statement->execute($result);

When I replace $key = array(1,2); with $key = array($key); the query only fetches data for the first ID whereby I assume it converts the array into string.

$key also holds the value 1,2 in an array shown below:

$a=$data['sub'];

$key0=array();
foreach($a as $v=>$k) 
  {

    $key0[]=$v;

  }

 $key2=implode(',',$key0);
 $key = array($key2);

How do I make the PDO understand $key holds an array value and not a string?

  • 写回答

1条回答 默认 最新

  • douci1677 2015-05-12 08:52
    关注

    I solve this problem always using named placeholders. I personally don't like the ? stuff. You need a placeholder for every value of your in.

    See the sample code:

    $key = array(1,2);
    $pricing = "somePricing";
    $postcode = "somePostcode";
    
    
    $bindings = array();
    $bindings[] = array(":pricing", $pricing, PDO::PARAM_STR);
    $bindings[] = array(":postcode", $postcode, PDO::PARAM_STR);
    
    $key_placeholders = array();
    foreach($key as $k => $v) {
        $placeholder = ":subid".$k;
        $bindings[] = array($placeholder, $v, PDO::PARAM_INT);
        $key_placeholders[] = $placeholder;
    }
    
    $sql = "SELECT * FROM posts "
            . "WHERE posts.subid IN (". implode(",",$key_placeholders).") "
            . "AND posts.pricing=:pricing  "
            . "AND posts.Poscode=:postcode "
            . "ORDER BY posts.Poscode "
            . "DESC LIMIT 60";
    
    $statement = $pdo->prepare($sql);
    foreach($bindings as $b) {
        $statement->bindValue($b[0],$b[1],$b[2]);
    }
    $statement->execute();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题