REQUEST COMPLIMENTARY SQLS*PLUS LICENCE
MongoDB PHP
MongoDB PHP: The database will receive a data stream from an external application or return this data back to it.
Therefore, we will need to organize work between MongoDB and an application written in one of the programming languages. PHP has been chosen as one of the most common programming languages, by the example of which we will consider such interaction.
Installing a driver for PHP
Install the driver for the PHP language. The driver itself can be downloaded directly from the Github project page: github.com/mongodb/mongo-php-driver.
After loading the driver and unpacking its package on Unix systems, you should enter the following commands:
phpize
./configure
make
sudo make install
And then add the next line to the php.ini file:
extension=mongo.so
So, let’s download and unpack this archive package. It will contain drivers for possible versions of PHP. We need to select the one that corresponds to your version of PHP and put the corresponding driver file in the PHP/ext directory where all the extensions for PHP are stored.
Then you need to make a change to the php.ini file by adding the following line to the section where the extensions are connected:
extension=php_mongo-[version].dll
For example, in my case with the PHP 5.4 Tread Safe version I added the file php_mongo-1.4.5-5.4-vc9.dll to the PHP/ext directory. So I add extension=php_mongo-1.4.5-5.4-vc9.dll to php.ini.
Then we reload the webserver and test it. To test the mongodb driver connection, you can use the standard phpinfo() function which outputs all PHP information to the webserver. In our case it should output the following:
Connecting to MongoDB from PHP
By connecting the driver to PHP, we can now connect to the database and interact with it from PHP code.
To establish a connection from the database, just write one line in the code:
$connection = new Mongo();
In this case, we connect to a server running on the localhost on standard port 27017. However, we can also connect to an external server:
$connection = new Mongo("somesite.com");
Here we are talking about connecting to a MongoDB server running on somesite.com and also on port 27017. If the port is different then we can also specify it:
$connection = new Mongo("somesite.com:888");
Once the database work is complete, we can close the connection using the close method:
$connection->close();
Document creation in PHP
Earlier we saw that a document in mongodb actually represents an object in a format similar to JSON. It can store keys with which certain values are mapped. The values themselves can also represent complex objects from keys and values. So, we created a document that represents an individual person:
steve = ({
"name": "Steve",
"age": 25,
"languages": ["engish", "french"],
company: {
"name": "Apple",
"year": 1976
}
})
Let’s create a similar document in PHP. To do this we will use associative arrays:
$steve = array(
"name" => "Steve",
"age" => 25,
"languages"=> array("engish", "french"),
"company" => array(
"name" => "Apple",
"year" => 1976
)
)
MongoDB PHP Tutorial – Driver and PHP Library Set Up
MORE NEWS
PreambleNoSql is not a replacement for SQL databases but is a valid alternative for many situations where standard SQL is not the best approach for...
PreambleMongoDB Conditional operators specify a condition to which the value of the document field shall correspond.Comparison Query Operators $eq...
5 Database management trends impacting database administrationIn the realm of database management systems, moreover half (52%) of your competitors feel...
The data type is defined as the type of data that any column or variable can store in MS SQL Server. What is the data type? When you create any table or...
PreambleMS SQL Server is a client-server architecture. MS SQL Server process starts with the client application sending a query.SQL Server accepts,...
First the basics: what is the master/slave?One database server (“master”) responds and can do anything. A lot of other database servers store copies of all...
PreambleAtom Hopper (based on Apache Abdera) for those who may not know is an open-source project sponsored by Rackspace. Today we will figure out how to...
PreambleMongoDB recently introduced its new aggregation structure. This structure provides a simpler solution for calculating aggregated values rather...
FlexibilityOne of the most advertised features of MongoDB is its flexibility. Flexibility, however, is a double-edged sword. More flexibility means more...
PreambleSQLShell is a cross-platform command-line tool for SQL, similar to psql for PostgreSQL or MySQL command-line tool for MySQL.Why use it?If you...
PreambleWriting an application on top of the framework on top of the driver on top of the database is a bit like a game on the phone: you say “insert...
PreambleOracle Coherence is a distributed cache that is functionally comparable with Memcached. In addition to the basic function of the API cache, it...
PreambleIBM pureXML, a proprietary XML database built on a relational mechanism (designed for puns) that offers both relational ( SQL / XML ) and...
What is PostgreSQL array? In PostgreSQL we can define a column as an array of valid data types. The data type can be built-in, custom or enumerated....
PreambleIf you are a Linux sysadmin or developer, there comes a time when you need to manage an Oracle database that can work in your environment.In this...
PreambleStarting with Microsoft SQL Server 2008, by default, the group of local administrators is no longer added to SQL Server administrators during the...