项目燃尽图统计数据调用方式优化

Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
vilson 2020-02-22 10:30:35 +08:00
parent 47b6c0a3de
commit 2aab591490
2 changed files with 11 additions and 4 deletions

View File

@ -8,4 +8,4 @@ define('USE_SSL', false);//是否使用ssl
define('LOCAL_CERT', '/www/wwwroot/EasyProjectApi/server.pem');// 证书路径也可以是crt文件
define('LOCAL_PK', '/www/wwwroot/EasyProjectApi/server.key');
define('VERIFY_PEER', false);
define('ALLOW_SELF_SIGNED', true);//如果是自签名证书需要开启此选项
define('ALLOW_SELF_SIGNED', false);//如果是自签名证书需要开启此选项

View File

@ -1,5 +1,6 @@
<?php
use GuzzleHttp\Client;
use Workerman\Lib\Timer;
use Workerman\Worker;
@ -9,6 +10,7 @@ require_once __DIR__ . '/../../../../vendor/autoload.php';
date_default_timezone_set('Asia/Shanghai');
$client = new Client();
$task = new Worker();
$task->name = 'crontab';
$doneTicket = [];
@ -32,9 +34,14 @@ function checkTime()
function setProjectReport()
{
global $doneTicket;
global $client,$doneTicket;
$doneTicket['setProjectReportDate'] = date('Y-m-d', time());
exec("php think projectReport",$out);
echo $out[0];
//命令行模式
// exec("php think projectReport",$out);
// echo $out[0];
//http模式
$res = $client->request('GET', SITE_URL . '/index.php/project/project/_setDayilyProejctReport');
echo $res->getBody();
}