File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ description: |
9
9
Defaults to ``"mongodb://127.0.0.1:27017"`` if unspecified.
10
10
11
11
Any special characters in the URI components need to be encoded according to
12
- `RFC 3986 <http ://www.faqs .org/rfcs /rfc3986.html >`_. This is particularly
12
+ `RFC 3986 <https ://www.rfc-editor .org/info /rfc3986>`_. This is particularly
13
13
relevant to the username and password, which can often include special
14
14
characters such as ``@``, ``:``, or ``%``. When connecting via a Unix domain
15
15
socket, the socket path may contain special characters such as slashes and
@@ -26,7 +26,7 @@ description: |
26
26
Specifies additional URI options, such as authentication credentials or query
27
27
string parameters. The options specified in ``$uriOptions`` take precedence
28
28
over any analogous options present in the ``$uri`` string and do not need to
29
- be encoded according to `RFC 3986 <http ://www.faqs .org/rfcs /rfc3986.html >`_.
29
+ be encoded according to `RFC 3986 <https ://www.rfc-editor .org/info /rfc3986>`_.
30
30
31
31
Refer to the :php:`MongoDB\\Driver\\Manager::__construct()
32
32
<mongodb-driver-manager.construct>` extension reference and :manual:`MongoDB
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Overview
15
15
16
16
MongoDB stores data records as BSON documents. BSON is a binary representation
17
17
of :term:`JSON` documents, though it contains more data types than JSON. For the
18
- BSON spec, see `bsonspec.org <http ://bsonspec.org/>`_.
18
+ BSON spec, see `bsonspec.org <https ://bsonspec.org/>`_.
19
19
20
20
By default, the |php-library| returns BSON documents as
21
21
:phpclass:`MongoDB\\Model\\BSONDocument` objects and BSON arrays as
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ Collation Parameters
66
66
]
67
67
68
68
The only required parameter is ``locale``, which the server parses as an `ICU
69
- format locale ID <http ://userguide.icu-project. org/ locale>`_. For example, set
69
+ format locale ID <https ://unicode- org.github.io/icu/userguide/ locale/ >`_. For example, set
70
70
``locale`` to ``en_US`` to represent US English or ``fr_CA`` to represent
71
71
Canadian French.
72
72
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ BSON Type Classes
28
28
29
29
When upgrading from the legacy driver, type classes such as MongoId must be
30
30
replaced with classes in the
31
- `MongoDB\\BSON namespace <https://www. php.net/manual/en/book.bson.php>`_. The
31
+ `MongoDB\\BSON namespace <https://php.net/manual/en/book.bson.php>`_. The
32
32
new driver also introduces interfaces for its BSON types, which should be
33
33
preferred if applications need to type hint against BSON values.
34
34
You can’t perform that action at this time.
0 commit comments