在mysqli预处理语句中,NULL变为''(在字符串的情况下)或0(在整数的情况下)。我想将它存储为真正的NULL。有没有办法做到这一点?
答案 0 :(得分:35)
我知道这是一个旧线程,但是可以将一个真正的NULL值绑定到预准备语句(read this)。
事实上,您可以使用mysqli_bind_parameter将NULL值传递给数据库。只需创建一个变量并将NULL值(请参阅它的联机帮助页)存储到变量并绑定它。无论如何,对我来说都很棒。
因此它必须是:
<?php
$mysqli = new mysqli('localhost', 'my_user', 'my_password', 'world');
// person is some object you have defined earlier
$name = $person->name();
$age = $person->age();
$nickname = ($person->nickname() != '') ? $person->nickname() : NULL;
// prepare the statement
$stmt = $mysqli->prepare("INSERT INTO Name, Age, Nickname VALUES (?, ?, ?)");
$stmt->bind_param('sis', $name, $age, $nickname);
?>
这应该将NULL值插入数据库。
答案 1 :(得分:30)
对于那些看来这个因为他们在WHERE
语句中绑定NULL时遇到问题的人来说,解决方法就是这样:
必须使用mysql NULL safe operator:
<=>
示例:
<?php
$price = NULL; // NOTE: no quotes - using php NULL
$stmt = $mysqli->prepare("SELECT id FROM product WHERE price <=> ?"); // Will select products where the price is null
$stmt->bind_param($price);
?>
答案 2 :(得分:5)
对PHP documentation on mysqli_stmt::bind_param
的评论表明,传递NULL
并非易事。
请参阅@ creatio的回答:https://stackoverflow.com/a/6892491/18771
评论中提供的解决方案对准备好的声明做了一些准备工作,用"?"
标记替换每个具有PHP "NULL"
值的参数null
。然后使用修改后的查询字符串。
以下功能来自user comment 80119:
function preparse_prepared($sQuery, &$saParams)
{
$nPos = 0;
$sRetval = $sQuery;
foreach ($saParams as $x_Key => $Param)
{
//if we find no more ?'s we're done then
if (($nPos = strpos($sQuery, '?', $nPos + 1)) === false)
{
break;
}
//this test must be done second, because we need to
//increment offsets of $nPos for each ?.
//we have no need to parse anything that isn't NULL.
if (!is_null($Param))
{
continue;
}
//null value, replace this ? with NULL.
$sRetval = substr_replace($sRetval, 'NULL', $nPos, 1);
//unset this element now
unset($saParams[$x_Key]);
}
return $sRetval;
}
(这不是我想做的编码风格,但是如果有效的话......)
答案 3 :(得分:0)
在我身边,我将每个参数存储在一个数组中,并通过array_shift($ myArray)在Bind_param函数中传递它们。就像那样接受NULL .. S上。
答案 4 :(得分:0)
<?php
$mysqli=new mysqli('localhost','root','','test');
$mysqli->query("CREATE TABLE test_NULL (id int(11))");
if($query=$mysqli->prepare("insert into test_NULL VALUES(?)")){
$query->bind_param('i',$null); //note that $null is undefined
$query->execute();
}else{
echo __LINE__.' '.$mysqli->error;
}
?>