我有一些表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的回应!
我会尝试以下之一:
原文链接:https://www.f2er.com/php/131155.html1:
$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();
我没有测试过这些,但我记得有一个类似的问题,只是不记得我如何解决它.希望这可以帮助!