當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Header::__construct方法代碼示例

本文整理匯總了PHP中Header::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP Header::__construct方法的具體用法?PHP Header::__construct怎麽用?PHP Header::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Header的用法示例。


在下文中一共展示了Header::__construct方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 /**
  * Constructor
  *
  * @param Header ...$headers One or more headers to merge
  */
 public function __construct(Header ...$headers)
 {
     $params = array();
     foreach ($headers as $header) {
         foreach ($header->parameters() as $param) {
             if (isset($params[$param->name()])) {
                 throw new \UnexpectedValueException("Duplicate parameter.");
             }
             $params[$param->name()] = $param;
         }
     }
     parent::__construct(...array_values($params));
 }
開發者ID:sop,項目名稱:jwx,代碼行數:18,代碼來源:JOSE.php

示例2: __construct

 /**
  * Constructor
  *
  * @param   string policyref
  */
 public function __construct($policyref)
 {
     parent::__construct('P3P', NULL);
     $this->policyref = $policyref;
 }
開發者ID:melogamepay,項目名稱:xp-framework,代碼行數:10,代碼來源:P3PHeader.class.php

示例3: __construct

 /**
  *
  * @param string $id
  * @param array $attributes
  * @param array $items
  * @param string $theme
  * @param string $title
  * @param string $position
  * @param boolean $group
  */
 public function __construct($id = '', $attributes = array(), $items = array(), $theme = '', $title = '', $position = 'inline', $group = false)
 {
     parent::__construct($id, $attributes, $items, $theme, $title, $position);
     $this->_role = $this->attribute('data-role', 'footer', true);
     $this->group($group);
 }
開發者ID:TechnoSoluciones,項目名稱:B2C,代碼行數:16,代碼來源:Footer.php

示例4: __construct

 /**
  * Defines the `filename` parameter.
  *
  * @inheritdoc
  */
 public function __construct($value = null, array $attributes = [])
 {
     $this->parameters['filename'] = new HeaderParameter('filename');
     parent::__construct($value, $attributes);
 }
開發者ID:icanboogie,項目名稱:http,代碼行數:10,代碼來源:ContentDisposition.php

示例5: __construct

 /**
  * Content constructor.
  *
  * @param string $type
  */
 public function __construct(string $type)
 {
     parent::__construct('Content-Type', $type);
 }
開發者ID:demvsystems,項目名稱:curl,代碼行數:9,代碼來源:Content.php

示例6: __construct

 /**
  * Constructor
  *
  * @param   string user
  * @param   string pass
  */
 public function __construct($user, $pass)
 {
     $this->user = $user;
     $this->pass = $pass;
     parent::__construct('Authorization', 'Basic');
 }
開發者ID:Gamepay,項目名稱:xp-framework,代碼行數:12,代碼來源:BasicAuthorization.class.php

示例7: __construct

 public function __construct($contentType)
 {
     parent::__construct("Content-Type", $contentType);
 }
開發者ID:YumpDigital,項目名稱:concrete5-auth0,代碼行數:4,代碼來源:ContentType.php


注:本文中的Header::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。