0
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、他のすべてのテストと同様に拡張されます。

4

1 に答える 1

0

get_headers()は、指定された URL への HTTP リクエストによって返されるヘッダーを提供する PHP 関数です。与える必要のあるパラメータは文字列ですが、$this->url() は PHPUnit_Selenium オブジェクトを返します。

その既知の URL のヘッダーが必要な場合は、直接してみませんか?

$kur = get_headers('http://www.example.com/index.php');
于 2013-06-07T20:01:23.283 に答える