php教程 PHP开发 PHP7에서 Mongodb API 사용에 대한 자세한 설명

PHP7에서 Mongodb API 사용에 대한 자세한 설명

Dec 23, 2016 am 09:26 AM

PHP7 컴파일 및 설치

PHP7 Mongdb 확장 컴파일 및 설치

#먼저 종속 라이브러리 설치 yum -y install openldap-develwget https://pecl.php.net /get /mongodb-1.1.1.tgz /home/server/php7/bin/phpize # 컴파일하는 PHP 환경에 따라 다릅니다./configure --with-php-config=/home/server/php7/bin/php- config make && make install #성공하면 lib/php/extensions/no-debug-non-zts-20151012/에서 mongodb.so 확장을 생성하고 php.ini 구성 Extension=mongodb.so

를 수정합니다. 참고:

이전 버전은 mongo.so 확장을 사용했으며, 이전 php-mongodb api
는 적어도 현재는 PHP7에서 더 이상 지원되지 않습니다.
PHP7을 지원하는 최신 mongodb는 새로운 버전의 API(mongodb > 2.6. 🎜>

공식 홈페이지:

http://www.mongodb.org/

PHP 공식 홈페이지: https://pecl.php.net/package/mongodb http://pecl .php.net/package/mongo [폐기됨, 현재 PHP5.9999만 지원]

API 매뉴얼: http://docs.php.net/manual/en/set.mongodb.php

Mongodb API 작업

Mongodb 연결 초기화

$manager = new MongoDB/Driver/Manager("mongodb://127.0.0.1:27017"); var_dump($manager);
object(MongoDB/Driver/Manager)#1 (3)
{
["request_id"]=> int(1714636915)
["uri"]=> string(25) "mongodb://localhost:27017"
["cluster"]=> array(13) { 
["mode"]=>  string(6) "direct" 
["state"]=>  string(4) "born"
["request_id"]=> 
int(0) 
["sockettimeoutms"]=> 
int(300000) 
["last_reconnect"]=> 
int(0) 
["uri"]=> 
string(25) "mongodb://localhost:27017" 
["requires_auth"]=> 
int(0) 
["nodes"]=> 
array(...) 
["max_bson_size"]=> 
int(16777216) 
["max_msg_size"]=> 
int(50331648) 
["sec_latency_ms"]=> 
int(15) 
["peers"]=> 
array(0) { 
}
["replSet"]=> 
NULL
}}
로그인 후 복사
CURL 연산

$bulk = new MongoDB/Driver/BulkWrite(['ordered' => true]);$bulk->delete([]);
$bulk->insert(['_id' => 1]);
$bulk->insert(['_id' => 2]);
$bulk->insert(['_id' => 3,
'hello' => 'world']);$bulk->update(['_id' => 3],
['$set' => ['hello' => 'earth']]);
$bulk->insert(['_id' => 4, 'hello' => 'pluto']);
$bulk->update(['_id' => 4], ['$set' => ['hello' => 'moon']]);
$bulk->insert(['_id' => 3]);
$bulk->insert(['_id' => 4]);
$bulk->insert(['_id' => 5]);
$manager = new MongoDB/Driver/Manager('mongodb://localhost:27017');
$writeConcern = new MongoDB/Driver/WriteConcern(MongoDB/Driver/WriteConcern::MAJORITY, 1000);
try { 
$result = $manager->executeBulkWrite('db.collection', $bulk, $writeConcern);
}
catch (MongoDB/Driver/Exception/BulkWriteException $e)
{ 
$result = $e->getWriteResult(); 
// Check if the write concern could not be fulfilled 
if ($writeConcernError = $result->getWriteConcernError())
{printf("%s (%d): %s/n", 
$writeConcernError->getMessage(), 
$writeConcernError->getCode(), 
var_export($writeConcernError->getInfo(), true));
} 
// Check if any write operations did not complete at all 
foreach ($result->getWriteErrors() as $writeError) {printf("Operation#%d: %s (%d)/n", 
$writeError->getIndex(), 
$writeError->getMessage(), 
$writeError->getCode()); 
}} catch (MongoDB/Driver/Exception/Exception $e)
{
printf("Other error: %s/n", $e->getMessage()); 
exit;}printf("Inserted %d document(s)/n", $result->getInsertedCount());
printf("Updated %d document(s)/n", $result->getModifiedCount());
로그인 후 복사
쿼리

$filter = array();$options = array( 
/* Only return the following fields in the matching documents */ 
"projection" => array("title" => 1,"article" => 1,  ), 
"sort" => array("views" => -1,  ),  "modifiers" => array('$comment'  => "This is a query comment",'$maxTimeMS' => 100, 
),);$query = new MongoDB/Driver/Query($filter, $options);$manager = new MongoDB/Driver/Manager("mongodb://localhost:27017");
$readPreference = new MongoDB/Driver/ReadPreference(MongoDB/Driver/ReadPreference::RP_PRIMARY);$cursor = $manager->executeQuery("databaseName.collectionName", $query, $readPreference);
foreach($cursor as $document)
{
var_dump($document);}
로그인 후 복사
위 내용은 편집자가 공유한 Mongodb API 사용법에 대한 자세한 설명입니다.

PHP7에서 Mongodb API 사용에 대한 자세한 설명은 PHP 중국어 홈페이지를 참고해주세요!

본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

AI Hentai Generator

AI Hentai Generator

AI Hentai를 무료로 생성하십시오.

인기 기사

R.E.P.O. 에너지 결정과 그들이하는 일 (노란색 크리스탈)
3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 최고의 그래픽 설정
3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 아무도들을 수없는 경우 오디오를 수정하는 방법
3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25 : Myrise에서 모든 것을 잠금 해제하는 방법
4 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌

뜨거운 도구

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

드림위버 CS6

드림위버 CS6

시각적 웹 개발 도구

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)