我想选择这种方式 从帖子中选择sha1(id)= $ id;
所以我认为这可能在KO3 ORM中有些想法: post = ORM :: factory('post') - > where('sha1(id)','=',$ id) - > find();
问题是如何在函数中使用'sha1(id)',因为这种方式在KO3-ORM中不起作用
thnkx
答案 0 :(得分:0)
你只是稍微离开了。它应该是:
ORM::factory('post')->where('sha1("id")','=',$id)->find();