Example #1
0
 /**
  * returns current Date as MySql Datetime
  *
  * This method is intend to return current Date as MySql Datetime.
  *
  * @author Benjamin Carl <*****@*****.**>
  * @return string The requested value
  * @access public
  */
 public function getCurrentMySqlDateTime()
 {
     $now = new self();
     return $now->getMySqlDateTime();
 }