我已下载BitgoSDK PHP
,然后上传到我的服务器
打开示例/createAddress.php时
这是代码
require 'vendor/autoload.php';
use neto737\BitGoSDK\BitGoSDK;
use neto737\BitGoSDK\Enum\CurrencyCode;
$coin = CurrencyCode::BITCOIN_TESTNET;
$bitgo = new BitGoSDK('YOUR_API_KEY_HERE', $coin, true);
$bitgo->walletId = 'WALLET_ID_HERE';
$createAddress = $bitgo->createWalletAddress();
var_dump($createAddress);
它在httpd日志中显示错误
PHP致命错误:未捕获的错误:类 在以下位置找不到'neto737 \ BitGoSDK \ Enum \ CurrencyCode' /var/www/html/bitgo/examples/createAddress.php:8\n堆栈跟踪:\ n#0 {main} \ n放在/var/www/html/bitgo/examples/createAddress.php中 第8行,引荐来源:http://localhost/bitgo/examples/
我已经将src文件夹中的所有文件都上传到了examples文件夹的相同路径,但是不起作用。
请咨询。
提前谢谢