我正在尝试使用“vendor / autoload.php”通过PHP连接到mongodb,但是一旦我需要该文件,我就会得到localhost页面不能正常工作
<?php require '../vendor/autoload.php' ?>
$client = new MongoDB\Client("mongodb://localhost:27017");
$collection = $client->users->user;
答案 0 :(得分:1)
您忘记了;
并过早关闭了PHP标记,这可能是一个很好的开始修复。
<?php
require '../vendor/autoload.php';
$client = new MongoDB\Client("mongodb://localhost:27017");
$collection = $client->users->user;
如需进一步调查,请查看错误日志或启用错误报告!
<?php
// Put these lines to the top of your script
error_reporting(E_ALL);
ini_set('display_errors', true);
ini_set('display_startup_errors', true);