我正在将Idiorm与巴黎一起用于我的PHP项目 我想在我的mysql数据库中添加一些带有一些空值的函数 例如:
$openingtime->setBegin(null);
$openingtime->setEnd(null);
$openingtime->setDayOfWeek(1);
$openingtime->save();
数据库中的开始和结束列的类型为“time”,它们可以为空 例外结果
+----+-------+------+-----------+
| id | begin | end | dayOfWeek |
+----+-------+------+-----------+
| 1 | null | null | 1 |
+----+-------+------+-----------+
我得到的结果:
+----+----------+----------+-----------+
| id | begin | end | dayOfWeek |
+----+----------+----------+-----------+
| 1 | 00:00:00 | 00:00:00 | 1 |
+----+----------+----------+-----------+
ORM :: get_last_query()说的是这样的:
UPDATE `openingtime` SET `begin` = '', `end` = '', `dayOfWeek` = '1'
因此idiorm / paris不是null,而是插入一个空字符串。
是否有可能添加null而不是空字符串? 谢谢你的帮助!
编辑: 下面添加了OpeningTime的类别定义
class OpeningTime extends Model {
public static $_table = 'openingtime';
public static $_id_column = 'id';
public function getId(){
return $this->id;
}
public function getDayOfWeek(){
return $this->dayOfWeek;
}
public function getBegin(){
return $this->begin;
}
public function getEnd(){
return $this->end;
}
public function setBegin($begin){
$this->begin = htmlentities( strip_tags($begin), ENT_QUOTES);
}
public function setEnd($end){
$this->end = htmlentities( strip_tags($end), ENT_QUOTES);
}
public function setDayOfWeek($dayOfWeek){
$this->dayOfWeek = htmlentities( strip_tags($dayOfWeek), ENT_QUOTES);
}
}
答案 0 :(得分:0)
问题在于设置者,更准确地说是我在我的setter中使用的 htmlentities()和 strip_tags()的功能。如果给定值为null,则这些函数返回空字符串 我的解决方案现在:
public function setBegin($begin){
if(isset($begin)){
$this->begin = htmlentities( strip_tags($begin), ENT_QUOTES);
}
else{
$this->begin = null;
}
}
谢谢!