我们有 Zend Framework v2.0 设置和 WAMP 设置。我们已经确认我们的 WAMP 正在使用 localhost 中的测试(回显)文件按预期工作。
我们想使用 Zend 框架和 PHP 发出一个 HTTP 请求。我们的 .PHP 错误如下:
“致命错误:在第 32 行的 C:\wamp\bin\php\zend-framework\library\Zend\Http\Client.php 中找不到接口 'Zend\Stdlib\DispatchableInterface'”
这是我们精简的 PHP 文件:
<?php
require_once 'Zend/Http/Client.php';
require_once 'Zend/Http/Response.php';
//...custom HTTP request here not tied to the error
?>
该文件位于:C:\wamp\www
Zend 框架位于:'C:\wamp\bin\php\zend-framework
当 Client 文件尝试实现 DispatchableInterface 时,我们的代码似乎在 Client.php 文件中出错:
class Client implements Stdlib\DispatchableInterface
我们的 php.ini 对 include_path 有以下设置:
; Windows: "\path1;\path2"
include_path = ".;C:\wamp\bin\php\zend-framework\library"
感谢您的任何帮助!