123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace common\models;
- use yii\behaviors\TimestampBehavior;
- use yii\db\ActiveRecord;
- class HouseClickrecord extends ActiveRecord
- {
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::className(),
- 'attributes' => [
-
- ActiveRecord::EVENT_BEFORE_INSERT => ['create_at'],
-
-
- ],
-
- 'value' => $_SERVER['REQUEST_TIME']
- ]
- ];
- }
- public function FingByIp($ip,$hid)
- {
- return self::find()->andWhere(['ip'=>$ip])->andWhere(['hid'=>$hid])->exists();
- }
- }
|