2

我遇到了问题,下面的代码没有给我任何结果。但是,如果我取消注释指示的行,并注释掉 bind_param 行它可以工作,但这不是违背 mysqli 的目的吗?我的 var_dump 给我的字符串(1)“1”

function teams($mysqli, $league_id) {
    echo 'league id = ' . var_dump($league_id);
    $sql = "SELECT team_id, team_name FROM teams where league_id='?'";
//  $sql = "SELECT team_id, team_name FROM teams where league_id='".$league_id."'";
    $stmt = $mysqli->prepare($sql);
    $stmt->bind_param('i', $league_id);
    $stmt->execute();
    $stmt->bind_result($col1, $col2);  
    while($stmt->fetch()) {
        $results[] = array(  
            'team_id' => $col1,  
            'team_name' => $col2  
        );  
    }  
    $stmt->close();
    var_dump($results);
    return $results;
}
4

1 回答 1

2

函数 bool mysqli_stmt::bind_param ( 字符串 $types , 混合 &$var1 [, 混合 &$... ] )

接受以下 $types

类型规范字符

人物描述

我对应的变量具有整数类型

d 对应变量的类型为 double

s 对应的变量为字符串类型

b 对应的变量是一个 blob,将在数据包中发送

您将 $types 指定为 'i' 并将值作为单引号中的字符串给出。删除引号并尝试将 $league_id 转换为 int 值。

http://php.net/manual/en/mysqli-stmt.bind-param.php

快乐编码!

于 2012-04-05T04:08:18.877 回答