gpt4 book ai didi

php - 我怎样才能在 Doctrine 中将 NULL 设置到表中

转载 作者:可可西里 更新时间:2023-10-31 22:42:18 25 4
gpt4 key购买 nike

我有一些表 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(不是 =NULL)?

感谢回复!

最佳答案

我会尝试以下方法之一:

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();

我没有测试过这些,但我确实记得之前有过类似的问题,只是想不起来我是如何解决的。希望这对您有所帮助!

关于php - 我怎样才能在 Doctrine 中将 NULL 设置到表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3735056/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com