php – 如何在Doctrine中的表中设置NULL

前端之家收集整理的这篇文章主要介绍了php – 如何在Doctrine中的表中设置NULL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一些表store_section(id,parent_id,label),我想改变一些行,设置parent_id = null.

我试图:

$record = $table->getTable()->find( $id );
$record->parent_id = null;
$record->save();

但这不行.如何在Doctrine中将NULL设置为表,在上面的示例中,parent_id变为= 0(not = NULL)?

Thnx的回应!

我会尝试以下之一:

1:

$record = $table->getTable()->find( $id );
$record->parent_id = new Doctrine_Null();
$record->save();

2:

$record = $table->getTable()->find( $id );
$record->parent_id = "NULL";
$record->save();

我没有测试过这些,但我记得有一个类似的问题,只是不记得我如何解决它.希望这可以帮助!

原文链接:https://www.f2er.com/php/131155.html

猜你在找的PHP相关文章