PHPUnit错误“undefined index:HTTP_HOST”

前端之家收集整理的这篇文章主要介绍了PHPUnit错误“undefined index:HTTP_HOST”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经声明了一个HTTP_HOST,如下所示.
public function testReadUser() {

    $_SERVER['HTTP_HOST'] = "x.y";
    .
    .
    .
}

由此可见,PHPunit给出了未定义的索引错误.为什么?

在您的PHPunit.xml文件中,您可以设置服务器变量.在PHPunit根下添加PHP元素:
<PHPunit>
    <PHP>
        <server name='HTTP_HOST' value='http://localhost' />
    </PHP>
</PHPunit>

有关详细信息,请参阅the docs.

猜你在找的PHP相关文章