我有一个小的 PHP 脚本,其中包含以下代码:
$m = new MongoClient(Settings::$db);
$db = $m->db;
// get the 'customers' collection
$customers = $db->customers;
// determine if this customer already exists
$c = $customers.findOne(array('email' => $email)); <--- throws
if (is_null($c)) {
$customers.insert(array(
'email' => $email,
'firstname' => $firstName,
'lastname' => $lastName
));
}
// get the 'payments' collection
$payments = $db->payments;
// add a record
$payments->insert(array(
'email' => $email,
'firstname' => $firstName,
'lastname' => $lastName,
'amount' => $price,
'token' => $token
));
但它抛出了错误:
PHP 致命错误:调用未定义函数 findOne() in ...
现在,我已将文件下载并复制到ext
目录中php_mongo.dll
。此外,我已将此行添加到php.ini
:
extension=php_mongo.dll
而且我已经多次重新启动服务器。
我真的觉得这种findOne
方法不可用,因为php_mongo
没有加载扩展。但另一方面,在创建时不扔MongoClient
,在抓取数据库和集合时也不扔。
这里发生了什么?