示例#1
0
文件: Calc.php 项目: ulrikkold/cal
 /**
  * Returns the numeric month from the month name or an abreviation
  *
  * Both August and Aug would return 8.
  *
  * @param string $month
  *        	the name of the month to examine.
  *        	Case insensitive.
  *        	
  * @return integer the month's number
  *        
  * @access public
  * @static
  *
  */
 static function getMonthFromFullName($month)
 {
     $month = strtolower($month);
     $months = Calc::getMonthNames();
     while (list($id, $name) = each($months)) {
         if (ereg($month, strtolower($name))) {
             return $id;
         }
     }
     return 0;
 }