File tree 5 files changed +113
-11
lines changed
Filter options
5 files changed +113
-11
lines changed
Original file line number Diff line number Diff line change @@ -50,9 +50,11 @@ Provided Functions
50
50
51
51
.. seealso ::
52
52
53
- The :doc: `polyfill-intl-icu </components/polyfill_intl_icu >` and
54
- :doc: `polyfill-intl-normalizer </components/polyfill_intl_normalizer >`
55
- components provide polyfills for other classes and functions related to the
56
- Intl PHP extension.
53
+ Symfony provides more polyfills for other classes and functions related to
54
+ the Intl PHP extension:
55
+ :doc: `polyfill-intl-icu </components/polyfill_intl_icu >`,
56
+ :doc: `polyfill-intl-idn </components/polyfill_intl_idn >`,
57
+ :doc: `polyfill-intl-messageformatter </components/polyfill_intl_messageformatter >`,
58
+ and :doc: `polyfill-intl-normalizer </components/polyfill_intl_normalizer >`.
57
59
58
60
.. _`PHP intl extension` : https://secure.php.net/manual/en/book.intl.php
Original file line number Diff line number Diff line change @@ -46,9 +46,11 @@ Provided Functions
46
46
47
47
.. seealso ::
48
48
49
- The :doc: `polyfill-intl-grapheme </components/polyfill_intl_grapheme >` and
50
- :doc: `polyfill-intl-normalizer </components/polyfill_intl_normalizer >`
51
- components provide polyfills for other classes and functions related to the
52
- Intl PHP extension.
49
+ Symfony provides more polyfills for other classes and functions related to
50
+ the Intl PHP extension:
51
+ :doc: `polyfill-intl-grapheme </components/polyfill_intl_grapheme >`,
52
+ :doc: `polyfill-intl-idn </components/polyfill_intl_idn >`,
53
+ :doc: `polyfill-intl-messageformatter </components/polyfill_intl_messageformatter >`,
54
+ and :doc: `polyfill-intl-normalizer </components/polyfill_intl_normalizer >`.
53
55
54
56
.. _`PHP intl extension` : https://secure.php.net/manual/en/book.intl.php
Original file line number Diff line number Diff line change
1
+ .. index ::
2
+ single: Polyfill
3
+ single: IDN
4
+ single: Components; Polyfill
5
+
6
+ The Symfony Polyfill / Intl IDN Component
7
+ =========================================
8
+
9
+ This component provides a collection of functions related to IDN when the
10
+ Intl extension is not installed.
11
+
12
+ Installation
13
+ ------------
14
+
15
+ .. code-block :: terminal
16
+
17
+ $ composer require symfony/polyfill-intl-idn
18
+
19
+ Alternatively, you can clone the `<https://github.com/symfony/polyfill-intl-idn >`_ repository.
20
+
21
+ .. include :: /components/require_autoload.rst.inc
22
+
23
+ Usage
24
+ -----
25
+
26
+ Once this component is installed in your application, you can use the following
27
+ functions, no matter if the `PHP intl extension `_ is installed or not in your
28
+ server.
29
+
30
+ Provided Functions
31
+ ~~~~~~~~~~~~~~~~~~
32
+
33
+ * :phpfunction: `idn_to_ascii `
34
+ * :phpfunction: `idn_to_utf8 `
35
+
36
+ .. seealso ::
37
+
38
+ Symfony provides more polyfills for other classes and functions related to
39
+ the Intl PHP extension:
40
+ :doc: `polyfill-intl-grapheme </components/polyfill_intl_grapheme >`,
41
+ :doc: `polyfill-intl-icu </components/polyfill_intl_icu >`,
42
+ :doc: `polyfill-intl-messageformatter </components/polyfill_intl_messageformatter >`,
43
+ and :doc: `polyfill-intl-normalizer </components/polyfill_intl_normalizer >`.
44
+
45
+ .. _`PHP intl extension` : https://secure.php.net/manual/en/book.intl.php
Original file line number Diff line number Diff line change
1
+ .. index ::
2
+ single: Polyfill
3
+ single: MessageFormatter
4
+ single: Components; Polyfill
5
+
6
+ The Symfony Polyfill / Intl MessageFormatter Component
7
+ ======================================================
8
+
9
+ This component provides a fallback implementation for the ``MessageFormatter ``
10
+ class to users who run PHP versions without the ``intl `` extension.
11
+
12
+ Installation
13
+ ------------
14
+
15
+ .. code-block :: terminal
16
+
17
+ $ composer require symfony/polyfill-intl-messageformatter
18
+
19
+ Alternatively, you can clone the `<https://github.com/symfony/polyfill-intl-messageformatter >`_ repository.
20
+
21
+ .. include :: /components/require_autoload.rst.inc
22
+
23
+ Usage
24
+ -----
25
+
26
+ Once this component is installed in your application, you can use the following
27
+ classes and functions, no matter if the `PHP intl extension `_ is installed or
28
+ not in your server.
29
+
30
+ Provided Classes
31
+ ~~~~~~~~~~~~~~~~
32
+
33
+ * :phpclass: `IntlException `
34
+ * :phpclass: `MessageFormatter `
35
+
36
+ Provided Functions
37
+ ~~~~~~~~~~~~~~~~~~
38
+
39
+ * :phpfunction: `msgfmt_format_message `
40
+
41
+ .. seealso ::
42
+
43
+ Symfony provides more polyfills for other classes and functions related to
44
+ the Intl PHP extension:
45
+ :doc: `polyfill-intl-grapheme </components/polyfill_intl_grapheme >`,
46
+ :doc: `polyfill-intl-idn </components/polyfill_intl_idn >`,
47
+ :doc: `polyfill-intl-icu </components/polyfill_intl_icu >`,
48
+ and :doc: `polyfill-intl-normalizer </components/polyfill_intl_normalizer >`.
49
+
50
+ .. _`PHP intl extension` : https://secure.php.net/manual/en/book.intl.php
Original file line number Diff line number Diff line change @@ -40,8 +40,11 @@ Provided Functions
40
40
41
41
.. seealso ::
42
42
43
- The :doc: `polyfill-intl-grapheme </components/polyfill_intl_grapheme >` and
44
- :doc: `polyfill-intl-icu </components/polyfill_intl_icu >` components provide
45
- polyfills for other classes and functions related to the Intl PHP extension.
43
+ Symfony provides more polyfills for other classes and functions related to
44
+ the Intl PHP extension:
45
+ :doc: `polyfill-intl-grapheme </components/polyfill_intl_grapheme >`,
46
+ :doc: `polyfill-intl-idn </components/polyfill_intl_idn >`,
47
+ :doc: `polyfill-intl-icu </components/polyfill_intl_icu >`,
48
+ and :doc: `polyfill-intl-messageformatter </components/polyfill_intl_messageformatter >`.
46
49
47
50
.. _`PHP intl extension` : https://secure.php.net/manual/en/book.intl.php
You can’t perform that action at this time.
0 commit comments