Новости | Документация | Download | Webboard | FAQ | Поиск | Контакты


mongo_insert

(PECL mongo >= 0.8.0)

mongo_insertInserts an array into a database collection

Описание

bool mongo_insert ( resource $connection , string $ns , array $query )

Inserts an array into a database collection.

Список параметров

connection

The database connection to use.

ns

The database and collection name

obj

The array to insert.

Возвращаемые значения

Whether the item was successfully inserted or not.

Примеры

Пример #1 mongo_insert() example

This example shows how to insert an array into a database collection.

<?php

$obj 
= array("x" => "y""z" => 2.4);
$conn mongo_connect("localhost"true);
if (!
$conn) {
   die(
"Could not connect.");
}
$ok mongo_insert($conn"foo.bar"$obj);
if( 
$ok ) {
  echo 
"inserted";
}

?>

Результатом выполнения данного примера будет что-то подобное:

inserted

Смотрите также






  Copyright Apache.ru © 1999-2017, All Rights Reserved Разработка сайта: Inside.ru  
  РЕКЛАМА НА САЙТЕ: |