コード例 #1
0
ファイル: TimeDimension.php プロジェクト: robertgunze/eams
 public static function getTimeIdByDate($date)
 {
     $dateKey = date("dmy");
     $model = TimeDimension::model()->find('daytimekey=:key', array(':key' => $dateKey));
     if ($model) {
         return $model->id;
     }
     return NULL;
 }