init.php 466 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @property string $ak
  4. * @property string $sk
  5. * @property string $operateDomain
  6. * @property int $startTime
  7. * @property int $endTime
  8. * @property string $exampleDomain
  9. */
  10. class Config {
  11. public function __construct() {
  12. $this->ak = "ak";
  13. $this->sk = "sk";
  14. $this->operateDomain = 'operate.com';
  15. $this->exampleDomain = 'example.com';
  16. $this->startTime = time();
  17. $this->endTime = time() + 60*10;
  18. }
  19. }