Skip to content

Commit 1cdbe23

Browse files
minor #230 Add link in intl idn readme (JakeFr)
This PR was merged into the 1.14-dev branch. Discussion ---------- Add link in intl idn readme Commits ------- 16fca79 Add link in intl idn readme
2 parents 5a095c9 + 16fca79 commit 1cdbe23

File tree

15 files changed

+59
-59
lines changed

15 files changed

+59
-59
lines changed

src/Iconv/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Symfony Polyfill / Iconv
22
========================
33

44
This component provides a native PHP implementation of the
5-
[php.net/iconv](http://php.net/iconv) functions
6-
(short of [`ob_iconv_handler`](http://php.net/manual/en/function.ob-iconv-handler.php)).
5+
[php.net/iconv](https://php.net/iconv) functions
6+
(short of [`ob_iconv_handler`](https://php.net/ob-iconv-handler)).
77

88
More information can be found in the
99
[main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md).

src/Intl/Grapheme/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ Symfony Polyfill / Intl: Grapheme
22
=================================
33

44
This component provides a partial, native PHP implementation of the
5-
[Grapheme functions](http://php.net/manual/en/ref.intl.grapheme.php) from the
6-
[Intl](http://php.net/intl) extension.
5+
[Grapheme functions](https://php.net/intl.grapheme) from the
6+
[Intl](https://php.net/intl) extension.
77

8-
- [`grapheme_extract`](http://php.net/grapheme_extract): Extract a sequence of grapheme
8+
- [`grapheme_extract`](https://php.net/grapheme_extract): Extract a sequence of grapheme
99
clusters from a text buffer, which must be encoded in UTF-8
10-
- [`grapheme_stripos`](http://php.net/grapheme_stripos): Find position (in grapheme units)
10+
- [`grapheme_stripos`](https://php.net/grapheme_stripos): Find position (in grapheme units)
1111
of first occurrence of a case-insensitive string
12-
- [`grapheme_stristr`](http://php.net/grapheme_stristr): Returns part of haystack string
12+
- [`grapheme_stristr`](https://php.net/grapheme_stristr): Returns part of haystack string
1313
from the first occurrence of case-insensitive needle to the end of haystack
14-
- [`grapheme_strlen`](http://php.net/grapheme_strlen): Get string length in grapheme units
15-
- [`grapheme_strpos`](http://php.net/grapheme_strpos): Find position (in grapheme units)
14+
- [`grapheme_strlen`](https://php.net/grapheme_strlen): Get string length in grapheme units
15+
- [`grapheme_strpos`](https://php.net/grapheme_strpos): Find position (in grapheme units)
1616
of first occurrence of a string
17-
- [`grapheme_strripos`](http://php.net/grapheme_strripos): Find position (in grapheme units)
17+
- [`grapheme_strripos`](https://php.net/grapheme_strripos): Find position (in grapheme units)
1818
of last occurrence of a case-insensitive string
19-
- [`grapheme_strrpos`](http://php.net/grapheme_strrpos): Find position (in grapheme units)
19+
- [`grapheme_strrpos`](https://php.net/grapheme_strrpos): Find position (in grapheme units)
2020
of last occurrence of a string
21-
- [`grapheme_strstr`](http://php.net/grapheme_strstr): Returns part of haystack string from
21+
- [`grapheme_strstr`](https://php.net/grapheme_strstr): Returns part of haystack string from
2222
the first occurrence of needle to the end of haystack
23-
- [`grapheme_substr`](http://php.net/grapheme_substr): Return part of a string
23+
- [`grapheme_substr`](https://php.net/grapheme_substr): Return part of a string
2424

2525
More information can be found in the
2626
[main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md).

src/Intl/Icu/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ Symfony Polyfill / Intl: ICU
33

44
This component provides a collection of functions/classes using the
55
[`symfony/intl`](https://github.com/symfony/intl) package when the
6-
[Intl](http://php.net/intl) extension is not installed, including:
6+
[Intl](https://php.net/intl) extension is not installed, including:
77

8-
- [`intl_is_failure()`](http://php.net/manual/en/function.intl-is-failure.php)
9-
- [`intl_get_error_code()`](http://php.net/manual/en/function.intl-get-error-code.php)
10-
- [`intl_get_error_message()`](http://php.net/manual/en/function.intl-get-error-message.php)
11-
- [`intl_error_name()`](http://php.net/manual/en/function.intl-error-name.php)
12-
- [`Collator`](http://php.net/Collator)
13-
- [`NumberFormatter`](http://php.net/NumberFormatter)
14-
- [`Locale`](http://php.net/Locale)
15-
- [`IntlDateFormatter`](http://php.net/IntlDateFormatter)
8+
- [`intl_is_failure()`](https://php.net/intl-is-failure)
9+
- [`intl_get_error_code()`](https://php.net/intl-get-error-code)
10+
- [`intl_get_error_message()`](https://php.net/intl-get-error-message)
11+
- [`intl_error_name()`](https://php.net/intl-error-name)
12+
- [`Collator`](https://php.net/Collator)
13+
- [`NumberFormatter`](https://php.net/NumberFormatter)
14+
- [`Locale`](https://php.net/Locale)
15+
- [`IntlDateFormatter`](https://php.net/IntlDateFormatter)
1616

1717
More information can be found in the
1818
[main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md).

src/Intl/Idn/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Symfony Polyfill / Intl: Idn
22
============================
33

4-
This component provides `idn_to_ascii` and `idn_to_utf8` functions to users who run php versions without the intl extension.
4+
This component provides [`idn_to_ascii`](https://php.net/idn-to-ascii) and [`idn_to_utf8`](https://php.net/idn-to-utf8) functions to users who run php versions without the [Intl](https://php.net/intl) extension.
55

66
More information can be found in the
77
[main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md).

src/Intl/MessageFormatter/MessageFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* * simple parameters
4747
* * integer number parameters
4848
*
49-
* It does NOT support the ['apostrophe-friendly' syntax](http://www.php.net/manual/en/messageformatter.formatmessage.php).
49+
* It does NOT support the ['apostrophe-friendly' syntax](https://php.net/MessageFormatter.formatMessage).
5050
* Also messages that are working with the fallback implementation are not necessarily compatible with the
5151
* PHP intl MessageFormatter so do not rely on the fallback if you are able to install intl extension somehow.
5252
*

src/Intl/MessageFormatter/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Symfony Polyfill / Intl: MessageFormatter
22
=========================================
33

44
This component provides a fallback implementation for the
5-
[`MessageFormatter`](http://php.net/manual/en/class.messageformatter.php) class provided
6-
by the [Intl](http://php.net/intl) extension.
5+
[`MessageFormatter`](https://php.net/MessageFormatter) class provided
6+
by the [Intl](https://php.net/intl) extension.
77

88
More information can be found in the
99
[main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md).

src/Intl/Normalizer/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Symfony Polyfill / Intl: Normalizer
22
===================================
33

44
This component provides a fallback implementation for the
5-
[`Normalizer`](http://php.net/manual/en/class.normalizer.php) class provided
6-
by the [Intl](http://php.net/intl) extension.
5+
[`Normalizer`](https://php.net/Normalizer) class provided
6+
by the [Intl](https://php.net/intl) extension.
77

88
More information can be found in the
99
[main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md).

src/Mbstring/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Symfony Polyfill / Mbstring
22
===========================
33

44
This component provides a partial, native PHP implementation for the
5-
[Mbstring](http://php.net/mbstring) extension.
5+
[Mbstring](https://php.net/mbstring) extension.
66

77
More information can be found in the
88
[main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md).

src/Php54/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ Symfony Polyfill / Php54
33

44
This component provides functions unavailable in releases prior to PHP 5.4:
55

6-
- [`trait_exists`](http://php.net/trait_exists)
7-
- [`class_uses`](http://php.net/class_uses)
8-
- [`hex2bin`](http://php.net/hex2bin)
9-
- [`session_register_shutdown`](http://php.net/session_register_shutdown)
6+
- [`trait_exists`](https://php.net/trait_exists)
7+
- [`class_uses`](https://php.net/class_uses)
8+
- [`hex2bin`](https://php.net/hex2bin)
9+
- [`session_register_shutdown`](https://php.net/session_register_shutdown)
1010

1111
More information can be found in the
1212
[main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md).

src/Php54/Resources/stubs/SessionHandlerInterface.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
*
2323
* Extensive documentation can be found at php.net, see links:
2424
*
25-
* @see http://php.net/sessionhandlerinterface
26-
* @see http://php.net/session.customhandler
27-
* @see http://php.net/session-set-save-handler
25+
* @see https://php.net/sessionhandlerinterface
26+
* @see https://php.net/session.customhandler
27+
* @see https://php.net/session-set-save-handler
2828
*
2929
* @author Drak <[email protected]>
3030
* @author Tobias Schultze <http://tobion.de>
@@ -34,10 +34,10 @@ interface SessionHandlerInterface
3434
/**
3535
* Re-initializes existing session, or creates a new one.
3636
*
37-
* @see http://php.net/sessionhandlerinterface.open
37+
* @see https://php.net/sessionhandlerinterface.open
3838
*
3939
* @param string $savePath Save path
40-
* @param string $sessionName Session name, see http://php.net/function.session-name.php
40+
* @param string $sessionName Session name, see https://php.net/function.session-name.php
4141
*
4242
* @return bool true on success, false on failure
4343
*/
@@ -46,7 +46,7 @@ public function open($savePath, $sessionName);
4646
/**
4747
* Closes the current session.
4848
*
49-
* @see http://php.net/sessionhandlerinterface.close
49+
* @see https://php.net/sessionhandlerinterface.close
5050
*
5151
* @return bool true on success, false on failure
5252
*/
@@ -55,9 +55,9 @@ public function close();
5555
/**
5656
* Reads the session data.
5757
*
58-
* @see http://php.net/sessionhandlerinterface.read
58+
* @see https://php.net/sessionhandlerinterface.read
5959
*
60-
* @param string $sessionId Session ID, see http://php.net/function.session-id
60+
* @param string $sessionId Session ID, see https://php.net/function.session-id
6161
*
6262
* @return string Same session data as passed in write() or empty string when non-existent or on failure
6363
*/
@@ -69,9 +69,9 @@ public function read($sessionId);
6969
* Care, the session ID passed to write() can be different from the one previously
7070
* received in read() when the session ID changed due to session_regenerate_id().
7171
*
72-
* @see http://php.net/sessionhandlerinterface.write
72+
* @see https://php.net/sessionhandlerinterface.write
7373
*
74-
* @param string $sessionId Session ID , see http://php.net/function.session-id
74+
* @param string $sessionId Session ID , see https://php.net/function.session-id
7575
* @param string $data Serialized session data to save
7676
*
7777
* @return bool true on success, false on failure
@@ -81,9 +81,9 @@ public function write($sessionId, $data);
8181
/**
8282
* Destroys a session.
8383
*
84-
* @see http://php.net/sessionhandlerinterface.destroy
84+
* @see https://php.net/sessionhandlerinterface.destroy
8585
*
86-
* @param string $sessionId Session ID, see http://php.net/function.session-id
86+
* @param string $sessionId Session ID, see https://php.net/function.session-id
8787
*
8888
* @return bool true on success, false on failure
8989
*/
@@ -92,7 +92,7 @@ public function destroy($sessionId);
9292
/**
9393
* Cleans up expired sessions (garbage collection).
9494
*
95-
* @see http://php.net/sessionhandlerinterface.gc
95+
* @see https://php.net/sessionhandlerinterface.gc
9696
*
9797
* @param string|int $maxlifetime Sessions that have not updated for the last maxlifetime seconds will be removed
9898
*

0 commit comments

Comments
 (0)