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


PHP Helper::floatValue方法代碼示例

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


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

示例1: getOrderPositionData

 /**
  * Helper function returns the data of an order position
  * @param NodeElement $position
  * @param string[] $selectors
  * @return array
  */
 private function getOrderPositionData(NodeElement $position, array $selectors)
 {
     $data = [];
     foreach ($selectors as $key => $selector) {
         $element = $position->find('css', $selector);
         $data[$key] = $element->getText();
         if ($key !== 'product') {
             $data[$key] = Helper::floatValue($data[$key]);
         }
     }
     return $data;
 }
開發者ID:BucherStoerzbachGbR,項目名稱:shopware,代碼行數:18,代碼來源:AccountOrder.php

示例2: getStarsProperty

 /**
  * Returns the star rating
  * @return float
  */
 public function getStarsProperty()
 {
     $elements = Helper::findElements($this, ['stars']);
     return Helper::floatValue($elements['stars']->getAttribute('class'));
 }
開發者ID:BucherStoerzbachGbR,項目名稱:shopware,代碼行數:9,代碼來源:ArticleEvaluation.php

示例3: getFloatProperty

 /**
  * Helper method to read a float property
  * @param string $propertyName
  * @return float
  */
 protected function getFloatProperty($propertyName)
 {
     $element = Helper::findElements($this, [$propertyName]);
     return Helper::floatValue($element[$propertyName]->getText());
 }
開發者ID:BucherStoerzbachGbR,項目名稱:shopware,代碼行數:10,代碼來源:CartPosition.php

示例4: getPriceProperty

 /**
  * Returns the price
  * @param NodeElement $slide
  * @return float
  */
 public function getPriceProperty(NodeElement $slide)
 {
     $selector = Helper::getRequiredSelector($this, 'slidePrice');
     $price = $slide->find('css', $selector)->getText();
     return Helper::floatValue($price);
 }
開發者ID:BucherStoerzbachGbR,項目名稱:shopware,代碼行數:11,代碼來源:ArticleSlider.php

示例5: getPriceProperty

 /**
  * Returns the price
  * @return float
  */
 public function getPriceProperty()
 {
     $price = $this->getProperty('price');
     return Helper::floatValue($price);
 }
開發者ID:BucherStoerzbachGbR,項目名稱:shopware,代碼行數:9,代碼來源:ArticleBox.php

示例6: getPriceProperty

 /**
  * @return float
  */
 public function getPriceProperty()
 {
     $elements = Helper::findElements($this, ['price']);
     return Helper::floatValue($elements['price']->getText());
 }
開發者ID:BucherStoerzbachGbR,項目名稱:shopware,代碼行數:8,代碼來源:Article.php

示例7: getPriceProperty

 /**
  * Returns the price
  * @param NodeElement $slide
  * @return float
  */
 public function getPriceProperty(NodeElement $slide)
 {
     $selector = Helper::getRequiredSelector($this, 'slidePrice');
     preg_match('(\\d+,\\d{2})', $slide->find('css', $selector)->getHtml(), $price);
     return Helper::floatValue(current($price));
 }
開發者ID:GerDner,項目名稱:luck-docker,代碼行數:11,代碼來源:ArticleSlider.php


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