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


PHP Date::yesterday方法代码示例

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


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

示例1: testDayIsFinishedYesterday

 /**
  * yesterday 23:59:59 is finished
  * @group Core
  */
 public function testDayIsFinishedYesterday()
 {
     $period = new Day(Date::yesterday());
     $this->assertEquals(date("Y-m-d", time() - 86400), $period->toString());
     $this->assertEquals(array(), $period->getSubperiods());
     $this->assertEquals(0, $period->getNumberOfSubperiods());
 }
开发者ID:diosmosis,项目名称:piwik,代码行数:11,代码来源:DayTest.php

示例2: testRangePrevious3days

 public function testRangePrevious3days()
 {
     $range = new Range('day', 'previous3');
     $yesterday = Date::yesterday();
     $correct = array();
     for ($i = 0; $i < 3; $i++) {
         $correct[] = $yesterday->subDay($i)->toString();
     }
     $correct = array_reverse($correct);
     $this->assertEquals(3, $range->getNumberOfSubperiods());
     $this->assertEquals($correct, $range->toString());
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:12,代码来源:RangeTest.php

示例3: testYesterday

 /**
  * create today object check that timestamp is correct (midnight)
  *
  * @group Core
  */
 public function testYesterday()
 {
     $date = Date::yesterday();
     $this->assertEquals(strtotime(date("Y-m-d", strtotime('-1day')) . " 00:00:00"), $date->getTimestamp());
 }
开发者ID:ahdinosaur,项目名称:analytics.dinosaur.is,代码行数:10,代码来源:DateTest.php

示例4: testCheckOtherTestsWereComplete

            $apiForTesting[] = array('VisitsSummary.get', array('idSite' => self::$fixture->idSite, 'date' => date("Y-m-d", strtotime(self::$fixture->dateTime)) . ',today', 'period' => 'range', 'testSuffix' => '_' . $segment['segment'], 'segmentToComplete' => $segment['segment']));
        }
        return $apiForTesting;
    }
    /**
     * @depends      testAnotherApi
     */
    public function testCheckOtherTestsWereComplete()
    {
        // Check that only a few haven't been tested specifically (these are all custom variables slots since we only test slot 1, 2, 5 (see the fixture) and example dimension slots)
        $maximumSegmentsToSkip = 16;
        $this->assertLessThan($maximumSegmentsToSkip, count(self::$skipped), 'SKIPPED ' . count(self::$skipped) . ' segments --> some segments had no "auto-suggested values"
            but we should try and test the autosuggest for all new segments. Segments skipped were: ' . implode(', ', self::$skipped));
        // and check that most others have been tested
        $minimumSegmentsToTest = 46;
        $message = 'PROCESSED ' . self::$processed . ' segments --> it seems some segments "auto-suggested values" haven\'t been tested as we were expecting. ';
        $this->assertGreaterThan($minimumSegmentsToTest, self::$processed, $message);
    }
    public static function getSegmentsMetadata($idSite)
    {
        // Refresh cache for CustomVariables\Model
        Cache::clearCacheGeneral();
        \Piwik\Plugins\CustomVariables\Model::install();
        // Segment matching NONE
        $segments = \Piwik\Plugins\API\API::getInstance()->getSegmentsMetadata($idSite);
        return $segments;
    }
}
AutoSuggestAPITest::$fixture = new ManyVisitsWithGeoIP();
AutoSuggestAPITest::$fixture->dateTime = Date::yesterday()->subDay(30)->getDatetime();
开发者ID:ahdinosaur,项目名称:analytics.dinosaur.is,代码行数:30,代码来源:AutoSuggestAPITest.php

示例5: getAnotherApiForTesting

    public function getAnotherApiForTesting()
    {
        $apiForTesting = array();
        $segments = \Piwik\Plugins\API\API::getInstance()->getSegmentsMetadata(self::$fixture->idSite);
        foreach ($segments as $segment) {
            if (self::isTravisCI() && $segment['segment'] == 'deviceType') {
                // test started failing after bc19503 and I cannot understand why
                continue;
            }
            $apiForTesting[] = array('VisitsSummary.get', array('idSite' => self::$fixture->idSite, 'date' => date("Y-m-d", strtotime(self::$fixture->dateTime)) . ',today', 'period' => 'range', 'testSuffix' => '_' . $segment['segment'], 'segmentToComplete' => $segment['segment']));
        }
        return $apiForTesting;
    }
    /**
     * @group Integration
     * @depends      testAnotherApi
     */
    public function testCheckOtherTestsWereComplete()
    {
        // Check that only a few haven't been tested specifically (these are all custom variables slots since we only test slot 1, 2, 5 (see the fixture))
        $maximumSegmentsToSkip = 11;
        $this->assertTrue(count(self::$skipped) <= $maximumSegmentsToSkip, 'SKIPPED ' . count(self::$skipped) . ' segments --> some segments had no "auto-suggested values"
            but we should try and test the autosuggest for all new segments. Segments skipped were: ' . implode(', ', self::$skipped));
        // and check that most others have been tested
        $minimumSegmentsToTest = 46;
        $this->assertTrue(self::$processed >= $minimumSegmentsToTest, 'PROCESSED ' . self::$processed . ' segments --> it seems some segments "auto-suggested values" haven\'t been tested as we were expecting');
    }
}
Test_Piwik_Integration_AutoSuggestAPITest::$fixture = new Test_Piwik_Fixture_ManyVisitsWithGeoIP();
Test_Piwik_Integration_AutoSuggestAPITest::$fixture->dateTime = Date::yesterday()->subDay(30)->getDatetime();
开发者ID:carriercomm,项目名称:piwik,代码行数:30,代码来源:AutoSuggestAPITest.php


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