Inheritance: use trait Webiny\Component\StdLib\StdLibTrait
コード例 #1
0
ファイル: HeadersTest.php プロジェクト: Webiny/Framework
 public function testGetAll()
 {
     $_SERVER['HTTP_HOST'] = "localhost";
     $headers = new Headers();
     $this->assertSame(['Host' => 'localhost'], $headers->getAll());
 }
コード例 #2
0
ファイル: Request.php プロジェクト: Nkelliny/Framework
 /**
  * Get a value from HTTP Headers
  * If key doesn't not exist, $value will be returned and assigned under that key.
  *
  * @param string $key   Key for which you wish to get the value.
  * @param mixed  $value Default value that will be returned if $key doesn't exist.
  *
  * @return mixed Value of the given $key.
  */
 public function header($key = null, $value = null)
 {
     return $this->isNull($key) ? $this->headers->getAll() : $this->headers->get($key, $value);
 }