×

Db::raw无法正常使用

天外来信 天外来信 发表于2022-03-30 17:35:44 浏览925 评论0

抢沙发发表评论

object of class think\db\Raw could not be converted to string
--------------------------------------------------------------------
\vendor\topthink\think-orm\src\db\Raw.php 补上下面代码后正常
--------------------------------------------------------------------

public function __toString()
{
return (string) $this->value;
}


评论列表

访客