Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用Yii Framework并希望将一个名为的行为附加datetimeI18NBehavior到所有模型。
Yii Framework
datetimeI18NBehavior
我正在手动将以下代码添加到每个模型中:
public function behaviors() { return array( 'datetimeI18NBehavior' => array('class' => 'ext.DateTimeI18NBehavior') ); }
有可能这样做吗?
只需使用此函数创建一个基本模型类,并让您的其他类扩展您的基本模型。