我已尝试从此处连接API: http://www.hrd.pl/wsparcie/api/nawiazanie-polaczenia/ 与微框架Silex。
我在github上找到了解决方案: https://github.com/Ibsciss/zend-soap-service-provider 我已经完成了自述文件的所有内容。我注册了这样的服务:
$app->register(new ZendSoapServiceProvider());
之后,我有空白页面,我的错误.log说:
PHP致命错误:Class' ZendSoapServiceProvider'在第30行的/home/stolarz/public_html/hosting-site/web/index.php中找不到
你能给我一些暗示,我真的被困了。是否有另一种方法通过SOAP与Silex连接?
答案 0 :(得分:2)
您需要指定要尝试实例化的类的命名空间。
use Ibsciss\Silex\Provider\ZendSoapServiceProvider;