public function testheaders()
{
$url=$this->url('http://www.example.com/index.php');
$kur = get_headers($url);
var_dump($kur);
}
我得到了error
:get_headers(): Filename cannot be empty
。
我的课程像我的所有其他考试一样延伸PHPUnit_Extensions_Selenium2TestCase
。
答案 0 :(得分:0)
get_headers()是一个PHP函数,它将通过HTTP请求返回给指定url的标头。您需要提供的参数是一个字符串,但是$ this-> url()返回一个PHPUnit_Selenium对象。
如果你想要那个已知网址的标题,为什么不直接做?
$kur = get_headers('http://www.example.com/index.php');