Latex calendar 0.5 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Latex calendar 0.5 (Default branch)
# 1  
Old 01-10-2008
Latex calendar 0.5 (Default branch)

ImageLatex calendar is a little program that produces aTex document that contains a calendar for a givenyear.License: GNU General Public License (GPL)Changes:
Problems with compiling under Ubuntu were fixed.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
DATEFMT_GET_CALENDAR(3) 						 1						   DATEFMT_GET_CALENDAR(3)

IntlDateFormatter::getCalendar - Get the calendar type used for the IntlDateFormatter

	Object oriented style

SYNOPSIS
int IntlDateFormatter::getCalendar (void ) DESCRIPTION
Procedural style int datefmt_get_calendar (IntlDateFormatter $fmt) PARAMETERS
o $fmt - The formatter resource RETURN VALUES
The calendar type being used by the formatter. Either IntlDateFormatter::TRADITIONAL or IntlDateFormatter::GREGORIAN. EXAMPLES
Example #1 datefmt_get_calendar(3) example <?php $fmt = datefmt_create( 'en_US', IntlDateFormatter::FULL, IntlDateFormatter::FULL, 'America/Los_Angeles', IntlDateFormatter::GREGORIAN ); echo 'calendar of the formatter is : ' . datefmt_get_calendar($fmt); datefmt_set_calendar($fmt, IntlDateFormatter::TRADITIONAL); echo 'Now calendar of the formatter is : ' . datefmt_get_calendar($fmt); ?> Example #2 OO example <?php $fmt = new IntlDateFormatter( 'en_US', IntlDateFormatter::FULL, IntlDateFormatter::FULL, 'America/Los_Angeles', IntlDateFormatter::GREGORIAN ); echo 'calendar of the formatter is : ' . $fmt->getCalendar(); $fmt->setCalendar(IntlDateFormatter::TRADITIONAL); echo 'Now calendar of the formatter is : ' . $fmt->getCalendar(); ?> The above example will output: calendar of the formatter is : 1 Now calendar of the formatter is : 0 SEE ALSO
datefmt_get_calendar_object(3), datefmt_set_calendar(3), datefmt_create(3). PHP Documentation Group DATEFMT_GET_CALENDAR(3)