|
@@ -32,15 +32,12 @@ class Kuaishou extends Base
|
|
|
}
|
|
|
|
|
|
|
|
|
- public function getSelTime()
|
|
|
+ public function getSelTime($sel = 30,$days = 7)
|
|
|
{
|
|
|
- strtotime("- 30 days");
|
|
|
- strtotime("- 23 days");
|
|
|
- var_dump(strtotime("- 30 days") * 1000, strtotime("- 23 days") * 100);
|
|
|
-
|
|
|
- /* list($msec, $sec) = explode(' ', microtime());
|
|
|
- $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000);
|
|
|
- return $msectimes = substr($msectime,0,13);*/
|
|
|
+ $start = $sel;
|
|
|
+ $end = $sel - $days;
|
|
|
+ var_dump([strtotime("- $start days"), strtotime("-$end days")]);
|
|
|
+ return [strtotime("- $start days"), strtotime("-$end days")];
|
|
|
}
|
|
|
|
|
|
/**
|