PHP ActiveRecord如何将单个类名与表名相关联?

时间:2013-07-12 05:52:26

标签: phpactiverecord

我仍然对以下工作方式感到困惑:

your table name would be "people" 
class Person extends ActiveRecord\Model {}

这就是我对我的表所做的事情:posts

class Post extends ActiveRecord\Model{}

我不得不指定Post实际上等于表posts。那么这个魔法在哪里/如何发生?如果需要,我将如何覆盖它?

例如:

class fish = table fish
class goose = table geese  

由于

1 个答案:

答案 0 :(得分:2)

使用模型中的静态$table_name,请参阅php-AR conventions