0

我想以这种方式选择从 sha1(id)=$id; 的帖子中选择

所以我认为这可能在 KO3 ORM 中有点像: post = ORM::factory('post')->where('sha1(id)','=',$id)->find();

问题是如何在 where 函数中使用 'sha1(id)' 因为这种方式在 KO3-ORM 中不起作用

谢谢

4

1 回答 1

0

你只是有点偏离。它应该是:

ORM::factory('post')->where('sha1("id")','=',$id)->find();
于 2011-01-28T14:53:35.420 回答