示例#1
0
 /**
  * Set class params with obtained url structure parameters.
  *
  * @return void;
  */
 public function currentDate($withTime = false, $format = null)
 {
     if (empty($format)) {
         $format = $this->dateFormat;
     }
     if ($withTime == true) {
         $format = $format . $this->dateTimeDelimiter . $this->timeFormat;
     } else {
         $format = $format;
     }
     return string::currentDate($format);
 }