<?PHP

function mdt($what)
{
   setlocale(LC_TIME,'de_DE'); 
   $what;
   if ($what == NULL)
   {
      return strftime('%d.%m.%Y  %H:%M:%S');
    }
    else
    {
    
      switch ( $what )
      {
        case 'day':
        return strftime('%d');
        break;
        
        case 'n_month':
        return strftime('%m');
        break;
        
        case 'a_month':
        return strftime('%B');
        break;
        
        case 'year':
        return strftime('%Y');
        break;
        
        case 'all_a':
        return strftime('%d.%B.%Y');
        break;
        
        case 'all_n':
        return strftime('%d.%m.%Y');
        break;
        
        case 'time':
        return strftime('%H:%M:%S');
        break;
        
      }
    }
}
?>