當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。