尝试了从sightengine使用API的不同方法之后我可以“开始工作”,我按照their site上的说明,通过composer进行安装,但是当我尝试使用它时,我发现找不到类apache中的错误:
PHP Fatal error: Uncaught Error: Class 'Sightengine\\SightengineClient' not found in /var/www/html/photobooth/app.php
PHP文件:
<?php
use Sightengine\SightengineClient;
$client = new SightengineClient('xxxxxxx', 'xxxxxxxxx');
答案 0 :(得分:1)
错过了包含该文件。
使用composer进行安装时,我们必须在代码中包含该文件
require_once 'vendor'.DIRECTORY_SEPARATOR.'autoload.php';
这将帮助您将文件包含在代码中,以便您可以开始使用类/对象