2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2003-10-07 03:49:01 +00:00
|
|
|
<!-- $Revision: 1.5 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/calendar.xml, last change in rev 1.19 -->
|
|
|
|
<refentry id="function.cal-days-in-month">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>cal_days_in_month</refname>
|
2003-10-07 03:49:01 +00:00
|
|
|
<refpurpose>Return the number of days in a month for a given year and calendar</refpurpose>
|
2002-04-15 00:12:54 +00:00
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
2003-10-07 03:49:01 +00:00
|
|
|
<title>Description</title>
|
2002-04-15 00:12:54 +00:00
|
|
|
<methodsynopsis>
|
|
|
|
<type>int</type><methodname>cal_days_in_month</methodname>
|
2003-10-07 03:49:01 +00:00
|
|
|
<methodparam><type>int</type><parameter>calendar</parameter></methodparam>
|
|
|
|
<methodparam><type>int</type><parameter>month</parameter></methodparam>
|
|
|
|
<methodparam><type>int</type><parameter>year</parameter></methodparam>
|
2002-04-15 00:12:54 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
2003-10-07 03:49:01 +00:00
|
|
|
This function will return the number of days in the
|
|
|
|
<parameter>month</parameter> of <parameter>year</parameter> for
|
|
|
|
the specified <parameter>calendar</parameter>.
|
2002-04-15 00:12:54 +00:00
|
|
|
</para>
|
2003-08-16 15:51:16 +00:00
|
|
|
<para>
|
|
|
|
<example>
|
2003-10-07 03:49:01 +00:00
|
|
|
<title><function>cal_days_in_month</function> example</title>
|
2003-08-16 15:51:16 +00:00
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
$num = cal_days_in_month(CAL_GREGORIAN, 8, 2003); // 31
|
2003-10-07 03:49:01 +00:00
|
|
|
echo "There was $num days in August 2003";
|
2003-08-16 15:51:16 +00:00
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
2002-04-15 00:12:54 +00:00
|
|
|
<para>
|
2003-10-07 03:49:01 +00:00
|
|
|
See also <function>jdtounix</function>.
|
2002-04-15 00:12:54 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|