Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHP客户是否MongoDB支持SSL?或者有没有办法连接到在 SSL 中运行的 MongoDB 实例?
PHP
MongoDB
SSL
我在 MongoDB 文档中看到客户端列表未指定 PHP(此链接),但我很想知道是否有人尝试或尝试并了解预期版本等。
是的,PHP 驱动程序在最新版本中支持此功能。在连接字符串中,您应该能够通过"ssl"以下两种方式添加选项:
"ssl"
$m = new MongoClient( 'mongodb://localhost/?ssl=true' );
$m = new MongoClient( 'mongodb://localhost', array( 'ssl' => true ) );