小编典典

PHP绑定“ bigint”数据类型(MySQLi准备的语句)

sql

$studentId = 57004542323382
$companyOfferId = 7

$sql = 'INSERT INTO studentPlacement (companyOfferId, studentId) VALUES (?, ?)';

if ($stmt = $db->prepare($sql)) {
    $stmt->bind_param("ii", $offerId, $studentId);
    $stmt->execute();
    $insertId = $stmt->insert_id;
    $stmt->close();
}

我的问题在于studentId变量。它的值太长,无法存储为标准整数,因此必须将其存储为bigint。当将参数绑定为整数时,只需输入“
1”作为studentId值。据我了解,bind_param支持4种类型;整数,字符串,blob和double。是否有人对我如何解决此问题有任何想法,以便我可以正确地将价值作为bigint发送?

谢谢


阅读 278

收藏
2021-05-30

共1个答案

小编典典

使用$studentId = '57004542323382'; // quotes added和字符串参数进行绑定。

2021-05-30