PHP
的{{1}}客户端是否支持MongoDB
?或者有没有办法连接到在SSL中运行的MongoDB实例?
我在MongoDB文档中看到客户端列表没有为PHP指定(this link),但我很想知道是否有人在尝试或尝试过,并了解预期的版本等。< / p>
答案 0 :(得分:2)
是的,PHP驱动程序在最新版本中支持此功能。在连接字符串中,您应该能够添加"ssl"
选项,如以下两种方式:
$m = new MongoClient( 'mongodb://localhost/?ssl=true' );
$m = new MongoClient( 'mongodb://localhost', array( 'ssl' => true ) );