コード例 #1
0
ファイル: ContentTypeHeader.php プロジェクト: koolkode/http
 public function __construct($mediaType, array $directives = [])
 {
     $this->mediaType = new MediaType($mediaType);
     Directives::mapDirectives($this, $directives);
 }
コード例 #2
0
ファイル: SetCookieHeader.php プロジェクト: koolkode/http
 public function __construct($name, $value = NULL, array $directives = [])
 {
     $this->name = trim($name);
     $this->value = $value;
     Directives::mapDirectives($this, $directives);
 }