我正在尝试安装名为" pesapi"
的汇款API
This is how the error is displayed
<?php
namespace Pluspeople\Pesapi;
set_include_path("..local_include:../include:" . get_include_path());
require_once("PLUSPEOPLE/autoload.php");
答案 0 :(得分:1)
也许你在Windows上运行它?
将:
替换为PATH_SEPARATOR
中的set_include_path
。像这样:
set_include_path("../local_include" . PATH_SEPARATOR . "../include" . PATH_SEPARATOR . get_include_path());
Windows的路径分隔符为;
而不是: