-
Notifications
You must be signed in to change notification settings - Fork 869
[PHP 8.3] New IntlGregorianCalendar methods #2943
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
181 changes: 181 additions & 0 deletions
181
reference/intl/intlgregoriancalendar/createfromdate.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,181 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <refentry xml:id="intlgregoriancalendar.createfromdate" xmlns="http://docbook.org/ns/docbook"> | ||
| <refnamediv> | ||
| <refname>IntlGregorianCalendar::createFromDate</refname> | ||
| <refpurpose>Create a new IntlGregorianCalendar instance from date</refpurpose> | ||
| </refnamediv> | ||
|
|
||
| <refsect1 role="description"> | ||
| &reftitle.description; | ||
| <methodsynopsis role="IntlGregorianCalendar"> | ||
| <modifier>public</modifier> <type>static</type><methodname>IntlGregorianCalendar::createFromDate</methodname> | ||
| <methodparam><type>int</type><parameter>year</parameter></methodparam> | ||
| <methodparam><type>int</type><parameter>month</parameter></methodparam> | ||
| <methodparam><type>int</type><parameter>dayOfMonth</parameter></methodparam> | ||
| </methodsynopsis> | ||
| <para> | ||
| Creates a new <classname>IntlGregorianCalendar</classname> instance from date. | ||
| </para> | ||
| </refsect1> | ||
|
|
||
| <refsect1 role="parameters"> | ||
| &reftitle.parameters; | ||
| <variablelist> | ||
| <varlistentry> | ||
| <term><parameter>year</parameter></term> | ||
| <listitem> | ||
| <para> | ||
| The new value for <constant>IntlGregorianCalendar::FIELD_YEAR</constant>. | ||
| </para> | ||
| </listitem> | ||
| </varlistentry> | ||
| <varlistentry> | ||
| <term><parameter>month</parameter></term> | ||
| <listitem> | ||
| <para> | ||
| The new value for <constant>IntlGregorianCalendar::FIELD_MONTH</constant>. | ||
| The month sequence is zero-based, i.e., January is represented by 0, | ||
| February by 1, …, December is 11 and Undecember (if the calendar has | ||
| it) is 12. | ||
| </para> | ||
| </listitem> | ||
| </varlistentry> | ||
| <varlistentry> | ||
| <term><parameter>dayOfMonth</parameter></term> | ||
| <listitem> | ||
| <para> | ||
| The new value for <constant>IntlGregorianCalendar::FIELD_DAY_OF_MONTH</constant>. | ||
| </para> | ||
| </listitem> | ||
| </varlistentry> | ||
| </variablelist> | ||
| </refsect1> | ||
|
|
||
| <refsect1 role="returnvalues"> | ||
| &reftitle.returnvalues; | ||
| <para> | ||
| Returns a new <classname>IntlGregorianCalendar</classname> instance. | ||
| </para> | ||
| </refsect1> | ||
|
|
||
| <refsect1 role="examples"> | ||
| &reftitle.examples; | ||
| <para> | ||
| <example> | ||
| <title><methodname>IntlGregorianCalendar::createFromDate</methodname> example</title> | ||
| <programlisting role="php"> | ||
| <![CDATA[ | ||
| <?php | ||
|
|
||
| $intlCalendar = IntlGregorianCalendar::createFromDate(2023, 11, 23); | ||
| var_dump($intlCalendar); | ||
| ?> | ||
| ]]> | ||
| </programlisting> | ||
| &example.outputs.similar; | ||
| <screen> | ||
| <![CDATA[ | ||
| object(IntlGregorianCalendar)#1 (5) { | ||
| ["valid"]=> | ||
| bool(true) | ||
| ["type"]=> | ||
| string(9) "gregorian" | ||
| ["timeZone"]=> | ||
| array(4) { | ||
| ["valid"]=> | ||
| bool(true) | ||
| ["id"]=> | ||
| string(16) "Europe/Amsterdam" | ||
| ["rawOffset"]=> | ||
| int(3600000) | ||
| ["currentOffset"]=> | ||
| int(3600000) | ||
| } | ||
| ["locale"]=> | ||
| string(11) "en_US_POSIX" | ||
| ["fields"]=> | ||
| array(23) { | ||
| ["era"]=> | ||
| int(1) | ||
| ["year"]=> | ||
| int(2023) | ||
| ["month"]=> | ||
| int(11) | ||
| ["week of year"]=> | ||
| int(51) | ||
| ["week of month"]=> | ||
| int(4) | ||
| ["day of year"]=> | ||
| int(357) | ||
| ["day of month"]=> | ||
| int(23) | ||
| ["day of week"]=> | ||
| int(7) | ||
| ["day of week in month"]=> | ||
| int(4) | ||
| ["AM/PM"]=> | ||
| int(0) | ||
| ["hour"]=> | ||
| int(0) | ||
| ["hour of day"]=> | ||
| int(0) | ||
| ["minute"]=> | ||
| int(0) | ||
| ["second"]=> | ||
| int(0) | ||
| ["millisecond"]=> | ||
| int(0) | ||
| ["zone offset"]=> | ||
| int(3600000) | ||
| ["DST offset"]=> | ||
| int(0) | ||
| ["year for week of year"]=> | ||
| int(2023) | ||
| ["localized day of week"]=> | ||
| int(7) | ||
| ["extended year"]=> | ||
| int(2023) | ||
| ["julian day"]=> | ||
| int(2460302) | ||
| ["milliseconds in day"]=> | ||
| int(0) | ||
| ["is leap month"]=> | ||
| int(0) | ||
| } | ||
| } | ||
| ]]> | ||
| </screen> | ||
| </example> | ||
| </para> | ||
| </refsect1> | ||
|
|
||
| <refsect1 role="seealso"> | ||
| &reftitle.seealso; | ||
| <para> | ||
| <simplelist> | ||
| <member><methodname>IntlGregorianCalendar::createFromDateTime</methodname></member> | ||
| </simplelist> | ||
| </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:"~/.phpdoc/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 | ||
| --> | ||
208 changes: 208 additions & 0 deletions
208
reference/intl/intlgregoriancalendar/createfromdatetime.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,208 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <refentry xml:id="intlgregoriancalendar.createfromdatetime" xmlns="http://docbook.org/ns/docbook"> | ||
| <refnamediv> | ||
| <refname>IntlGregorianCalendar::createFromDateTime</refname> | ||
| <refpurpose>Create a new IntlGregorianCalendar instance from date and time</refpurpose> | ||
| </refnamediv> | ||
|
|
||
| <refsect1 role="description"> | ||
| &reftitle.description; | ||
| <methodsynopsis role="IntlGregorianCalendar"> | ||
| <modifier>public</modifier> <type>static</type><methodname>IntlGregorianCalendar::createFromDateTime</methodname> | ||
| <methodparam><type>int</type><parameter>year</parameter></methodparam> | ||
| <methodparam><type>int</type><parameter>month</parameter></methodparam> | ||
| <methodparam><type>int</type><parameter>dayOfMonth</parameter></methodparam> | ||
| <methodparam><type>int</type><parameter>hour</parameter></methodparam> | ||
| <methodparam><type>int</type><parameter>minute</parameter></methodparam> | ||
| <methodparam choice="opt"><type>int</type><parameter>second</parameter><initializer>&null;</initializer></methodparam> | ||
| </methodsynopsis> | ||
| <para> | ||
| Creates a new <classname>IntlGregorianCalendar</classname> instance from date and time. | ||
| </para> | ||
| </refsect1> | ||
|
|
||
| <refsect1 role="parameters"> | ||
| &reftitle.parameters; | ||
| <variablelist> | ||
| <varlistentry> | ||
| <term><parameter>year</parameter></term> | ||
| <listitem> | ||
| <para> | ||
| The new value for <constant>IntlGregorianCalendar::FIELD_YEAR</constant>. | ||
| </para> | ||
| </listitem> | ||
| </varlistentry> | ||
| <varlistentry> | ||
| <term><parameter>month</parameter></term> | ||
| <listitem> | ||
| <para> | ||
| The new value for <constant>IntlGregorianCalendar::FIELD_MONTH</constant>. | ||
| The month sequence is zero-based, i.e., January is represented by 0, | ||
| February by 1, …, December is 11 and Undecember (if the calendar has | ||
| it) is 12. | ||
| </para> | ||
| </listitem> | ||
| </varlistentry> | ||
| <varlistentry> | ||
| <term><parameter>dayOfMonth</parameter></term> | ||
| <listitem> | ||
| <para> | ||
| The new value for <constant>IntlGregorianCalendar::FIELD_DAY_OF_MONTH</constant>. | ||
| </para> | ||
| </listitem> | ||
| </varlistentry> | ||
| <varlistentry> | ||
| <term><parameter>hour</parameter></term> | ||
| <listitem> | ||
| <para> | ||
| The new value for <constant>IntlGregorianCalendar::FIELD_HOUR_OF_DAY</constant>. | ||
| </para> | ||
| </listitem> | ||
| </varlistentry> | ||
| <varlistentry> | ||
| <term><parameter>minute</parameter></term> | ||
| <listitem> | ||
| <para> | ||
| The new value for <constant>IntlGregorianCalendar::FIELD_MINUTE</constant>. | ||
| </para> | ||
| </listitem> | ||
| </varlistentry> | ||
| <varlistentry> | ||
| <term><parameter>second</parameter></term> | ||
| <listitem> | ||
| <para> | ||
| The new value for <constant>IntlGregorianCalendar::FIELD_SECOND</constant>. | ||
| </para> | ||
| </listitem> | ||
| </varlistentry> | ||
| </variablelist> | ||
| </refsect1> | ||
|
|
||
| <refsect1 role="returnvalues"> | ||
| &reftitle.returnvalues; | ||
| <para> | ||
| Returns a new <classname>IntlGregorianCalendar</classname> instance. | ||
| </para> | ||
| </refsect1> | ||
|
|
||
| <refsect1 role="examples"> | ||
| &reftitle.examples; | ||
| <para> | ||
| <example> | ||
| <title><methodname>IntlCalendar::setDateTime</methodname> example</title> | ||
| <programlisting role="php"> | ||
| <![CDATA[ | ||
| <?php | ||
|
|
||
| $intlCalendar = IntlGregorianCalendar::createFromDateTime(2023, 11, 23, 12, 00); | ||
| var_dump($intlCalendar); | ||
| ?> | ||
| ]]> | ||
| </programlisting> | ||
| &example.outputs.similar; | ||
| <screen> | ||
| <![CDATA[ | ||
| object(IntlGregorianCalendar)#1 (5) { | ||
| ["valid"]=> | ||
| bool(true) | ||
| ["type"]=> | ||
| string(9) "gregorian" | ||
| ["timeZone"]=> | ||
| array(4) { | ||
| ["valid"]=> | ||
| bool(true) | ||
| ["id"]=> | ||
| string(16) "Europe/Amsterdam" | ||
| ["rawOffset"]=> | ||
| int(3600000) | ||
| ["currentOffset"]=> | ||
| int(3600000) | ||
| } | ||
| ["locale"]=> | ||
| string(11) "en_US_POSIX" | ||
| ["fields"]=> | ||
| array(23) { | ||
| ["era"]=> | ||
| int(1) | ||
| ["year"]=> | ||
| int(2023) | ||
| ["month"]=> | ||
| int(11) | ||
| ["week of year"]=> | ||
| int(51) | ||
| ["week of month"]=> | ||
| int(4) | ||
| ["day of year"]=> | ||
| int(357) | ||
| ["day of month"]=> | ||
| int(23) | ||
| ["day of week"]=> | ||
| int(7) | ||
| ["day of week in month"]=> | ||
| int(4) | ||
| ["AM/PM"]=> | ||
| int(1) | ||
| ["hour"]=> | ||
| int(0) | ||
| ["hour of day"]=> | ||
| int(12) | ||
| ["minute"]=> | ||
| int(0) | ||
| ["second"]=> | ||
| int(0) | ||
| ["millisecond"]=> | ||
| int(0) | ||
| ["zone offset"]=> | ||
| int(3600000) | ||
| ["DST offset"]=> | ||
| int(0) | ||
| ["year for week of year"]=> | ||
| int(2023) | ||
| ["localized day of week"]=> | ||
| int(7) | ||
| ["extended year"]=> | ||
| int(2023) | ||
| ["julian day"]=> | ||
| int(2460302) | ||
| ["milliseconds in day"]=> | ||
| int(43200000) | ||
| ["is leap month"]=> | ||
| int(0) | ||
| } | ||
| } | ||
| ]]> | ||
| </screen> | ||
| </example> | ||
| </para> | ||
| </refsect1> | ||
|
|
||
| <refsect1 role="seealso"> | ||
| &reftitle.seealso; | ||
| <para> | ||
| <simplelist> | ||
| <member><methodname>IntlGregorianCalendar::createFromDate</methodname></member> | ||
| </simplelist> | ||
| </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:"~/.phpdoc/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 | ||
| --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.