KOHANA 3 ORM:如何在 - >中使用sha1

时间:2010-12-15 11:55:14

标签: sha1 kohana-orm

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

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

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

thnkx

1 个答案:

答案 0 :(得分:0)

你只是稍微离开了。它应该是:

ORM::factory('post')->where('sha1("id")','=',$id)->find();