PHP cal_info() Function
Complete PHP Calendar Reference
Definition and Usage
The cal_info() function returns an array that contains information about a given calendar.
The array contains the following elements: calname,
calsymbol, month, abbrevmonth and maxdaysinmonth.
Syntax
| Parameter |
Description |
| calendar |
Optional. Specifies the calendar. The following
calendar values can be used:
- 0 = CAL_GREGORIAN
- 1 = CAL_JULIAN
- 2 = CAL_JEWISH
- 3 = CAL_FRENCH
|
Tips and Notes
Tip: In PHP 5, if no calendar parameter is specified, information on
ALL supported calendars is returned.
Example
<?php
$calinfo=cal_info(0);
print_r($calinfo);
?>
|
The output of the code above will be:
Array
(
[months] => Array
(
[1] => January
[2] => February
[3] => March
[4] => April
[5] => May
[6] => June
[7] => July
[8] => August
[9] => September
[10] => October
[11] => November
[12] => December
)
[abbrevmonths] => Array
(
[1] => Jan
[2] => Feb
[3] => Mar
[4] => Apr
[5] => May
[6] => Jun
[7] => Jul
[8] => Aug
[9] => Sep
[10] => Oct
[11] => Nov
[12] => Dec
)
[maxdaysinmonth] => 31
[calname] => Gregorian
[calsymbol] => CAL_GREGORIAN
)
|
Complete PHP Calendar Reference

Whether you're new to XML or already an advanced user,
the user-friendly views and powerful entry helpers,
wizards, and debuggers in XMLSpy are designed to meet your XML
and Web development needs from start to finish.
New features in Version 2010!
- XML editor
- Graphical XML Schema / DTD editors
- XSLT 1.0/2.0 editor, debugger, profiler
- XQuery editor, debugger, profiler
- XBRL validator, taxonomy editor, taxonomy wizard
- Support for Office Open XML (OOXML)
- Graphical WSDL 1.1/2.0 editor & SOAP debugger
- JSON editing & conversion
- Java, C#, C++ code generation
- And much more!
Download a free trial today!
|
|
|
|