示例#1
0
 public function wkst($weekDay)
 {
     if (Valid::weekDay($weekDay)) {
         $this->wkst = strtolower($weekDay);
         return $this;
     }
     throw new \InvalidArgumentException("wkst: Accepts " . rtrim(implode(Valid::$weekDays, ", "), ","));
 }