创建新的 ProductionEnvironment 对象时,Paypal 支付 PHP 内部服务器错误

Paypal payout PHP internal server error when creating new ProductionEnvironment object

我正在尝试将 PaypalPayoutSDK 集成到我的项目中。我已经尝试按照说明中的描述设置项目。

这是我的资料:

use PaypalPayoutsSDK\Core\PayPalHttpClient;
use PaypalPayoutsSDK\Core\ProductionEnvironment;

// Creating an environment
$clientId = "myid";
$clientSecret = "mysecret";

$environment = new ProductionEnvironment($clientId, $clientSecret);

文件夹结构为:

-payment
  -myfile.php
  -PaypalPayoutsSDK

当我尝试使用 new ProductionEnvironment() 时,我得到一个 500 Internal Server Error 我不太擅长 PHP,所以我可能不容易理解发生了什么以及如何修复它。例如,我没有使用作曲家,除非绝对有必要让它工作,否则我可能无法使用。我的项目是纯粹的 PHP,没有添加任何东西。

这是我收到的错误消息:

Fatal error: Uncaught Error: Class 'PaypalPayoutsSDK\Core\ProductionEnvironment' not found in /hermes/bosnaweb27a/b1507/dom.mynamestudios/myname/payment/payuser.php:14 Stack trace: #0 {main} thrown in /hermes/bosnaweb27a/b1507/dom.mynamestudios/myname/payment/payuser.php on line 14

这可能是什么问题?我该如何解决?

如果您添加以下内容:

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

到 PHP 文件的顶部,您可能会收到更有意义的错误消息