Deprecated: Optional parameter $keys declared before required parameter $cms_id is implicitly treated as a required parameter in /home/www/dev/work/class/blog/CmsKey.php on line 75

Deprecated: Creation of dynamic property lvesu\lvesu\controller\blog\php::$title is deprecated in /home/www/dev/work/website/lvesu/class/controller/blog/php.php on line 28

Deprecated: Creation of dynamic property lvesu\lvesu\controller\blog\php::$outlink is deprecated in /home/www/dev/work/website/lvesu/template/blog/cms/php.manual.tpl on line 2

Deprecated: Creation of dynamic property lvesu\lvesu\controller\blog\php::$status is deprecated in /home/www/dev/work/website/lvesu/template/blog/index.head.php on line 2
PHP - Manual: 获取数据库实例 - 互联网笔记

略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: 获取数据库实例

2025-05-18

获取数据库实例

要选择数据库,使用:

<?php
$connection 
= new MongoClient();
$db $connection->dbname;
?>

这个数据库不需要提前建好,当你使用它的时候,就会自动建立。

要小心的是,你可能不小心建立了一个新的数据库,然后产生奇怪的错误。 (在下面的例子中,第二次使用“同一个”数据库时 name 被错误的拼写成 anme

<?php
$connection 
= new MongoClient();

$db $connection->mybiglongdbname;
// do some stuff

$db $connection->mybiglongdbanme;
// now connected to a different database! 注意此时选择了另一个数据库!
?>

参见

MongoDB 类的文档中有对数据库对象的详细说明。

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/mongo.tutorial.selectdb.php

冷却塔厂家 广告
中文GPT4.0无需注册 广告
北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3