缂栬瘧瀹夎PHP7
缂栬瘧瀹夎PHP7 Mongdb鎵╁睍
#鍏堝畨瑁呬竴涓緷璧栧簱
yum -y install openldap-devel
wget https://pecl.php.net/get/mongodb-1.1.1.tgz
/home/server/php7/bin/phpize #鏍规嵁鑷繁缂栬瘧鐨凱HP鐜鑰屽畾
./configure --with-php-config=/home/server/php7/bin/php-config
make && make install
#濡傛灉鎴愬姛锛岀敓鎴愪竴涓猰ongodb.so鎵╁睍鍦╨ib/php/extensions/no-debug-non-zts-20151012/
淇敼php.ini閰嶇疆
extension=mongodb.so
娉細
浠ュ墠鐗堟湰鐢ㄧ殑鏄痬ongo.so鎵╁睍锛岃佺殑php-mongodb api
鍦≒HP7宸茬粡涓嶆敮鎸佷簡锛岃嚦灏戠洰鍓嶄笉鏀寔銆
鏈鏂版敮鎸丳HP7鐨刴ongodb 缂栬瘧鍚 浠呮敮鎸佹柊鐗圓PI(mongodb > 2.6.X鐗堟湰)
鍙傝冭祫鏂
GITHUB:
https://github.com/mongodb/
瀹樼綉锛
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 鎿嶄綔
鍒濆鍖朚ongodb杩炴帴
$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);
}
浠ヤ笂灏辨槸PHP7:Mongodb API浣跨敤鐨勮缁嗗唴瀹癸紝鏇村淇℃伅璇峰叧娉∣D浜戝叾瀹冪浉鍏虫枃绔狅紒