即使在安装ext时也找不到'HttpRequest'

时间:2012-04-11 19:27:45

标签: http request php

所以,我进行了搜索和搜索。我终于得到了下面的图片:

显示已安装php_http!我添加了

extension = php_http.dll

到我的php.ini文件并下载了php_http.dll,它位于C:\ wamp \ bin \ php \ php5.3.10 \ ext

正如我的WAMP所示,php_http已启用。为什么我仍然得到:

Fatal error: Class 'HttpRequest' not found in C:\wamp\www\q\xxxx.php on line 17

enter image description here

我的代码是: (我在“$ r = new HttpRequest('http:/ ......”这一行得到错误)     

// phpinfo();

class Xxx {

function __construct() {
}


function generate(){
    $r = new HttpRequest('http://www.whatever.com', HttpRequest::METH_GET);
    try {
        echo $r->send()->getBody();
    } catch (HttpException $ex) {
        echo $ex;
    }
}

}

$x= new Xxx();
$x->generate();

?>

0 个答案:

没有答案