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


PHP Piwik::getQuotientSafe方法代码示例

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


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

示例1: compute

 public function compute(Row $row)
 {
     $orders = $this->getMetric($row, 'orders');
     $abandonedCarts = $this->getMetric($row, 'abandoned_carts');
     $visits = $this->getMetric($row, 'nb_visits');
     return Piwik::getQuotientSafe($orders === false ? $abandonedCarts : $orders, $visits, GoalManager::REVENUE_PRECISION + 2);
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:7,代码来源:ProductConversionRate.php

示例2: compute

 public function compute(Row $row)
 {
     $quantity = $this->getMetric($row, 'quantity');
     $orders = $this->getMetric($row, 'orders');
     $abandonedCarts = $this->getMetric($row, 'abandoned_carts');
     return Piwik::getQuotientSafe($quantity, $orders === false ? $abandonedCarts : $orders, $precision = 1);
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:7,代码来源:AverageQuantity.php

示例3: compute

 public function compute(Row $row)
 {
     $mappingFromNameToIdGoal = Metrics::getMappingFromNameToIdGoal();
     $goalMetrics = $this->getGoalMetrics($row);
     $goalRevenue = $this->getMetric($goalMetrics, 'revenue', $mappingFromNameToIdGoal);
     $conversions = $this->getMetric($goalMetrics, 'nb_conversions', $mappingFromNameToIdGoal);
     return Piwik::getQuotientSafe($goalRevenue, $conversions, GoalManager::REVENUE_PRECISION);
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:8,代码来源:AverageOrderRevenue.php

示例4: compute

 public function compute(Row $row)
 {
     $columnName = $this->getWrappedName();
     $pastRow = $this->getPastRowFromCurrent($row);
     $currentValue = $this->getMetric($row, $columnName);
     $pastValue = $pastRow ? $this->getMetric($pastRow, $columnName) : 0;
     $dividend = $currentValue - $pastValue;
     $divisor = $pastValue;
     if ($dividend == 0) {
         return 0;
     } else {
         if ($divisor == 0) {
             return 1;
         } else {
             return Piwik::getQuotientSafe($dividend, $divisor, $this->quotientPrecision + 2);
         }
     }
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:18,代码来源:EvolutionMetric.php

示例5: compute

 public function compute(Row $row)
 {
     $mappingFromNameToIdGoal = Metrics::getMappingFromNameToIdGoal();
     $goals = $this->getMetric($row, 'goals') ?: array();
     $revenue = 0;
     foreach ($goals as $goalId => $goalMetrics) {
         if ($goalId == Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_CART) {
             continue;
         }
         if ($goalId >= GoalManager::IDGOAL_ORDER || $goalId == Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_ORDER) {
             $revenue += (int) $this->getMetric($goalMetrics, 'revenue', $mappingFromNameToIdGoal);
         }
     }
     if ($revenue == 0) {
         $revenue = (int) $this->getMetric($row, 'revenue');
     }
     $nbVisits = (int) $this->getMetric($row, 'nb_visits');
     $conversions = (int) $this->getMetric($row, 'nb_conversions');
     // If no visit for this metric, but some conversions, we still want to display some kind of "revenue per visit"
     // even though it will actually be in this edge case "Revenue per conversion"
     return Piwik::getQuotientSafe($revenue, $nbVisits == 0 ? $conversions : $nbVisits, GoalManager::REVENUE_PRECISION);
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:22,代码来源:RevenuePerVisit.php

示例6: compute

 public function compute(Row $row)
 {
     $exitVisits = $this->getMetric($row, 'exit_nb_visits');
     $visits = $this->getMetric($row, 'nb_visits');
     return Piwik::getQuotientSafe($exitVisits, $visits, $precision = 2);
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:6,代码来源:ExitRate.php

示例7: compute

 public function compute(Row $row)
 {
     $sumTimeSpent = $this->getMetric($row, 'sum_time_spent');
     $visits = $this->getMetric($row, 'nb_hits');
     return Piwik::getQuotientSafe($sumTimeSpent, $visits, $precision = 0);
 }
开发者ID:diosmosis,项目名称:piwik,代码行数:6,代码来源:AverageTimeOnPage.php

示例8: compute

 public function compute(Row $row)
 {
     $revenue = $this->getMetric($row, 'revenue');
     $conversions = $this->getMetric($row, 'nb_conversions');
     return Piwik::getQuotientSafe($revenue, $conversions, $precision = 2);
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:6,代码来源:AverageOrderRevenue.php

示例9: compute

 public function compute(Row $row)
 {
     $sumVisitLength = $this->getMetric($row, 'sum_visit_length');
     $nbVisits = $this->getMetric($row, 'nb_visits');
     return Piwik::getQuotientSafe($sumVisitLength, $nbVisits, $precision = 0);
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:6,代码来源:AverageTimeOnSite.php

示例10: compute

 public function compute(Row $row)
 {
     $interactions = $this->getMetric($row, 'nb_interactions');
     $impressions = $this->getMetric($row, 'nb_impressions');
     return Piwik::getQuotientSafe($interactions, $impressions, $precision = 4);
 }
开发者ID:mgou-net,项目名称:piwik,代码行数:6,代码来源:InteractionRate.php

示例11: compute

 public function compute(Row $row)
 {
     $visits = $this->getMetric($row, 'nb_visits');
     return Piwik::getQuotientSafe($visits, $this->cachedTotalVisits, $precision = 2);
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:5,代码来源:VisitsPercent.php

示例12: compute

 public function compute(Row $row)
 {
     $actions = $this->getMetric($row, 'nb_actions');
     $visits = $this->getMetric($row, 'nb_visits');
     return Piwik::getQuotientSafe($actions, $visits, $precision = 1);
 }
开发者ID:JoeHorn,项目名称:piwik,代码行数:6,代码来源:ActionsPerVisit.php

示例13: compute

 public function compute(Row $row)
 {
     $bounceCount = $this->getMetric($row, 'bounce_count');
     $visits = $this->getMetric($row, 'nb_visits');
     return Piwik::getQuotientSafe($bounceCount, $visits, $precision = 2);
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:6,代码来源:BounceRate.php

示例14: compute

 public function compute(Row $row)
 {
     $sumEventValue = $this->getMetric($row, 'sum_event_value');
     $eventsWithValue = $this->getMetric($row, 'nb_events_with_value');
     return Piwik::getQuotientSafe($sumEventValue, $eventsWithValue, $precision = 2);
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:6,代码来源:AverageEventValue.php

示例15: compute

 public function compute(Row $row)
 {
     $sumGenerationTime = $this->getMetric($row, 'sum_time_generation');
     $hitsWithTimeGeneration = $this->getMetric($row, 'nb_hits_with_time_generation');
     return Piwik::getQuotientSafe($sumGenerationTime, $hitsWithTimeGeneration, $precision = 3);
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:6,代码来源:AveragePageGenerationTime.php


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