我们将Zend Framework v2.0设置与WAMP设置一起使用。我们已经确认我们的WAMP正在按预期工作,并在localhost中使用了测试(echo)文件。
我们想使用Zend Framework和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 Framework位于:'C:\ wamp \ bin \ php \ zend-framework
当客户端文件尝试实现DispatchableInterface时,我们的代码似乎在Client.php文件中出错:
class Client implements Stdlib\DispatchableInterface
我们的php.ini具有include_path的以下设置:
; Windows: "\path1;\path2"
include_path = ".;C:\wamp\bin\php\zend-framework\library"
感谢您的帮助!