@@ -4,28 +4,25 @@ MongoDB PHP Library
4
4
5
5
.. default-domain:: mongodb
6
6
7
- The |php-library| provides a high-level abstraction
8
- around the lower-level `PHP Driver <https://php.net/mongodb>`_, also
9
- known as the ``mongodb`` extension.
10
-
11
- While the ``mongodb`` extension provides a limited API for executing
12
- commands, queries, and write operations, the |php-library|
13
- implements an API similar to that of the `legacy PHP driver
14
- <http://php.net/manual/en/book.mongo.php>`_. The library contains
15
- abstractions for client, database, and collection objects, and provides
16
- methods for CRUD operations and common commands such as index and
7
+ The |php-library| provides a high-level abstraction around the lower-level
8
+ `PHP Driver <https://php.net/mongodb>`_, also known as the ``mongodb``
9
+ extension.
10
+
11
+ While the ``mongodb`` extension provides a limited API for executing commands,
12
+ queries, and write operations, the |php-library| implements an API similar to
13
+ that of the `legacy PHP driver <http://php.net/manual/en/book.mongo.php>`_. The
14
+ library contains abstractions for client, database, and collection objects, and
15
+ provides methods for CRUD operations and common commands such as index and
17
16
collection management.
18
17
19
- If you are developing a PHP application with MongoDB, you should consider
20
- using this library, or another high-level abstraction, instead of the
21
- extension alone.
18
+ If you are developing a PHP application with MongoDB, you should consider using
19
+ this library, or another high-level abstraction, instead of the extension alone.
22
20
23
- For additional information about the MongoDB PHP Library and the
24
- ``mongodb`` extension, see the `Architecture Overview
25
- <http://php.net/manual/en/mongodb.overview.php>`_ article in the
26
- extension documentation. `Derick Rethans <http://derickrethans.nl/>`_
27
- has also written a series of blog posts entitled *New MongoDB Drivers
28
- for PHP and HHVM*:
21
+ For additional information about the MongoDB PHP Library and the ``mongodb``
22
+ extension, see the `Architecture Overview
23
+ <http://php.net/manual/en/mongodb.overview.php>`_ article in the extension
24
+ documentation. `Derick Rethans <http://derickrethans.nl/>`_ has also written a
25
+ series of blog posts entitled *New MongoDB Drivers for PHP and HHVM*:
29
26
30
27
- `Part One: History <https://derickrethans.nl/new-drivers.html>`_
31
28
@@ -42,26 +39,23 @@ If you are a new MongoDB user, these links should help you become more familiar
42
39
with MongoDB and introduce some of the concepts and terms you will encounter in
43
40
this documentation:
44
41
45
- - `Introduction to CRUD operations in MongoDB
46
- <http://docs.mongodb.org/manual/core/crud-introduction/>`_
42
+ - :manual:`Introduction to CRUD operations in MongoDB </core/crud>`
47
43
48
- - `What is a MongoDB document?
49
- <http://docs.mongodb.org/manual/core/document/>`_
44
+ - :manual:`What is a MongoDB document? </core/document>`
50
45
51
- - `MongoDB's *dot notation* for accessing document properties
52
- <http://docs.mongodb.org/manual/ core/document/#dot-notation>`_
46
+ - :manual:`Dot notation for accessing document properties
47
+ </ core/document/#dot-notation>`
53
48
54
- - `ObjectId: MongoDB's document identifier
55
- <http://docs.mongodb.org/manual/reference/object-id/>`_
49
+ - :manual:`ObjectId: MongoDB's document identifier </reference/object-id/>`
56
50
57
51
.. class:: hidden
58
52
59
53
.. toctree::
60
54
:titlesonly:
61
-
55
+
62
56
Installation </tutorial/install-php-library>
63
57
/tutorial
64
58
/upgrade
65
59
/reference
66
60
67
- .. /getting-started
61
+ .. /getting-started
0 commit comments