ARBiz::model PHP Méthode

model() public static méthode

public static model ( $className = __CLASS__ )
    public static function model($className = __CLASS__)
    {
        return parent::model($className);
    }

Usage Example

Exemple #1
0
 public static function bizInfo($data)
 {
     $biz = ARBiz::model()->findByPk($data['biz_id']);
     if ($biz == null) {
         return '该商品没有对应商家';
     }
     $str = $biz->title . '<span style="color:teal;">[商户ID:' . $biz->id . ']</span>';
     return $str;
 }
All Usage Examples Of ARBiz::model