当前位置: 首页>>代码示例>>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;未经允许,请勿转载。