当前位置: 首页>>代码示例>>PHP>>正文


PHP Iterator::__construct方法代码示例

本文整理汇总了PHP中Iterator::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Iterator::__construct方法的具体用法?PHP Iterator::__construct怎么用?PHP Iterator::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Iterator的用法示例。


在下文中一共展示了Iterator::__construct方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($declarations_string, Rule $rule)
 {
     parent::__construct();
     $pairs = DeclarationList::parse($declarations_string);
     foreach ($pairs as $index => $pair) {
         list($prop, $value) = $pair;
         // Directives.
         if ($prop === 'extends') {
             $rule->setExtendSelectors($value);
             unset($pairs[$index]);
         } elseif ($prop === 'name') {
             if (!$rule->name) {
                 $rule->name = $value;
             }
             unset($pairs[$index]);
         }
     }
     // Build declaration list.
     foreach ($pairs as $index => &$pair) {
         list($prop, $value) = $pair;
         if (trim($value) !== '') {
             if ($prop === 'mixin') {
                 $this->flattened = false;
                 $this->store[] = $pair;
             } else {
                 // Only store to $this->data if the value does not itself make a
                 // this() call to avoid circular references.
                 if (!preg_match(Regex::$patt->thisFunction, $value)) {
                     $this->data[strtolower($prop)] = $value;
                 }
                 $this->add($prop, $value, $index);
             }
         }
     }
 }
开发者ID:alexey-shapilov,项目名称:zorca-cms,代码行数:35,代码来源:DeclarationList.php

示例2: __construct

 public function __construct($selectorString, Rule $rule)
 {
     parent::__construct();
     $selectorString = trim(Util::stripCommentTokens($selectorString));
     foreach (Util::splitDelimList($selectorString) as $selector) {
         if (preg_match(Regex::$patt->abstract, $selector, $m)) {
             $rule->name = strtolower($m['name']);
             $rule->isAbstract = true;
         } else {
             $this->add(new Selector($selector));
         }
     }
 }
开发者ID:MrHidalgo,项目名称:css-crush,代码行数:13,代码来源:SelectorList.php

示例3: __construct

 /**
  * @param string $chunk
  * @param int $stackSize
  */
 public function __construct($chunk, $stackSize = 8)
 {
     parent::__construct(new \ArrayIterator(StringUtils::toArray($chunk)), $stackSize);
 }
开发者ID:edde-framework,项目名称:edde,代码行数:8,代码来源:StringIterator.php

示例4: __construct

 public function __construct(IIterator $iterator)
 {
     parent::__construct();
     $this->outerIterator = $iterator;
 }
开发者ID:timetoogo,项目名称:pinq,代码行数:5,代码来源:FlatteningIterator.php


注:本文中的Iterator::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。