修改轮询接口查询
This commit is contained in:
parent
800d91361f
commit
ce01b88f35
@ -7,12 +7,21 @@ use app\modules\api\models\ReportForm;
|
||||
|
||||
class ReportStartController extends \app\controllers\Controller
|
||||
{
|
||||
public $enableCsrfValidation = false;
|
||||
/**
|
||||
* @return array|mixed|null
|
||||
*/
|
||||
public function actionStart()
|
||||
{
|
||||
$storeId = \Yii::$app->request->get('store_id', 3);
|
||||
if(!\Yii::$app->request->isPost){
|
||||
$data = [
|
||||
'code' => 1,
|
||||
'msg' => "Invalid Request"
|
||||
];
|
||||
return $this->responseHandler($data);
|
||||
}
|
||||
|
||||
$storeId = \Yii::$app->request->post('store_id', 3);
|
||||
|
||||
$reportForm = new ReportForm();
|
||||
|
||||
@ -26,9 +35,17 @@ class ReportStartController extends \app\controllers\Controller
|
||||
*/
|
||||
public function actionUpload()
|
||||
{
|
||||
$leftImg = \Yii::$app->request->get('left');
|
||||
$rightImg = \Yii::$app->request->get('right');
|
||||
$id = \Yii::$app->request->get('id');
|
||||
if(!\Yii::$app->request->isPost){
|
||||
$data = [
|
||||
'code' => 1,
|
||||
'msg' => "Invalid Request"
|
||||
];
|
||||
return $this->responseHandler($data);
|
||||
}
|
||||
|
||||
$leftImg = \Yii::$app->request->post('left');
|
||||
$rightImg = \Yii::$app->request->post('right');
|
||||
$id = \Yii::$app->request->post('id');
|
||||
|
||||
$reportForm = new ReportForm();
|
||||
|
||||
|
||||
@ -154,8 +154,7 @@ class ReportForm extends ApiModel
|
||||
if (!empty($json_de['gender'])) {
|
||||
$json_de['gender_str'] = $gender[$json_de['gender']];
|
||||
}
|
||||
$json_de['left_data'] = $this->getData($json_de['left_id']);
|
||||
$json_de['right_data'] = $this->getData($json_de['right_id']);
|
||||
|
||||
}
|
||||
$find_store = Store::findOne([
|
||||
'id' => $find->store_id,
|
||||
@ -204,15 +203,24 @@ class ReportForm extends ApiModel
|
||||
{
|
||||
return Report::find()
|
||||
->orderBy(['start_at' => SORT_ASC])
|
||||
->where('start=1')
|
||||
->where('start_at>0')
|
||||
->where('store_id=' . $storeId)
|
||||
->andWhere(['start' => 1,'store_id' => $storeId])
|
||||
->andWhere('start_at>0')
|
||||
->select(['id'])
|
||||
->one()->toArray();
|
||||
}
|
||||
|
||||
public function uploadModule($id, $leftImg, $rightImg)
|
||||
{
|
||||
if (empty($id)) {
|
||||
return ['code' => 1, 'msg' => 'id错误'];
|
||||
}
|
||||
if (empty($leftImg)) {
|
||||
return ['code' => 1, 'msg' => '请上传正确的左脚图片'];
|
||||
}
|
||||
if (empty($rightImg)) {
|
||||
return ['code' => 1, 'msg' => '请上传正确的右脚图片'];
|
||||
}
|
||||
|
||||
$model = Report::findOne(['id' => $id]);
|
||||
|
||||
$json = json_decode($model->json, true);
|
||||
@ -221,6 +229,10 @@ class ReportForm extends ApiModel
|
||||
|
||||
$json['right_img'] = $rightImg;
|
||||
|
||||
$json['left_data'] = $this->getData(mt_rand(1001, 1006));
|
||||
|
||||
$json['right_data'] = $this->getData(mt_rand(2001, 2006));
|
||||
|
||||
$model->json = json_encode($json);
|
||||
|
||||
$model->start = 2;
|
||||
|
||||
@ -93,11 +93,12 @@ class ReportEditForm extends AdminModel
|
||||
public function start()
|
||||
{
|
||||
$this->model->start = 1;
|
||||
$this->model->start_at = time();
|
||||
|
||||
if (!$this->model->save()) {
|
||||
return $this->getModelError($this->model);
|
||||
}
|
||||
return $this->apiReturnSuccess('上传成功');
|
||||
return $this->apiReturnSuccess('开始成功');
|
||||
}
|
||||
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
141
runtime/debug/658d1a5e03962.data
Normal file
141
runtime/debug/658d1a5e03962.data
Normal file
File diff suppressed because one or more lines are too long
71
runtime/debug/658d1c44df33e.data
Normal file
71
runtime/debug/658d1c44df33e.data
Normal file
File diff suppressed because one or more lines are too long
71
runtime/debug/658d1c7c499d1.data
Normal file
71
runtime/debug/658d1c7c499d1.data
Normal file
File diff suppressed because one or more lines are too long
141
runtime/debug/658d1c86332cb.data
Normal file
141
runtime/debug/658d1c86332cb.data
Normal file
File diff suppressed because one or more lines are too long
141
runtime/debug/658d2c027fece.data
Normal file
141
runtime/debug/658d2c027fece.data
Normal file
File diff suppressed because one or more lines are too long
71
runtime/debug/658d2c09995a8.data
Normal file
71
runtime/debug/658d2c09995a8.data
Normal file
File diff suppressed because one or more lines are too long
71
runtime/debug/658d2c0e205a4.data
Normal file
71
runtime/debug/658d2c0e205a4.data
Normal file
File diff suppressed because one or more lines are too long
71
runtime/debug/658d2e2228b85.data
Normal file
71
runtime/debug/658d2e2228b85.data
Normal file
File diff suppressed because one or more lines are too long
71
runtime/debug/658d2e333d83e.data
Normal file
71
runtime/debug/658d2e333d83e.data
Normal file
File diff suppressed because one or more lines are too long
8
runtime/debug/658d2e5370144.data
Normal file
8
runtime/debug/658d2e5370144.data
Normal file
File diff suppressed because one or more lines are too long
141
runtime/debug/658d2e83c9a00.data
Normal file
141
runtime/debug/658d2e83c9a00.data
Normal file
File diff suppressed because one or more lines are too long
211
runtime/debug/658d39cd6ab6d.data
Normal file
211
runtime/debug/658d39cd6ab6d.data
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
211
runtime/debug/658d3b098a88b.data
Normal file
211
runtime/debug/658d3b098a88b.data
Normal file
File diff suppressed because one or more lines are too long
281
runtime/debug/658d3b0a3590b.data
Normal file
281
runtime/debug/658d3b0a3590b.data
Normal file
File diff suppressed because one or more lines are too long
211
runtime/debug/658d3b1fa60a8.data
Normal file
211
runtime/debug/658d3b1fa60a8.data
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
141
runtime/debug/658d3d0264b11.data
Normal file
141
runtime/debug/658d3d0264b11.data
Normal file
File diff suppressed because one or more lines are too long
141
runtime/debug/658d3d0761186.data
Normal file
141
runtime/debug/658d3d0761186.data
Normal file
File diff suppressed because one or more lines are too long
83
runtime/debug/658d3d120edf8.data
Normal file
83
runtime/debug/658d3d120edf8.data
Normal file
File diff suppressed because one or more lines are too long
141
runtime/debug/658d3d26a78e9.data
Normal file
141
runtime/debug/658d3d26a78e9.data
Normal file
File diff suppressed because one or more lines are too long
141
runtime/debug/658d3d2943ace.data
Normal file
141
runtime/debug/658d3d2943ace.data
Normal file
File diff suppressed because one or more lines are too long
141
runtime/debug/658d3d2bc14f7.data
Normal file
141
runtime/debug/658d3d2bc14f7.data
Normal file
File diff suppressed because one or more lines are too long
141
runtime/debug/658d3df5b7c06.data
Normal file
141
runtime/debug/658d3df5b7c06.data
Normal file
File diff suppressed because one or more lines are too long
281
runtime/debug/658d3e106c204.data
Normal file
281
runtime/debug/658d3e106c204.data
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
281
runtime/debug/658d3e12c0d52.data
Normal file
281
runtime/debug/658d3e12c0d52.data
Normal file
File diff suppressed because one or more lines are too long
281
runtime/debug/658d3e17ccb12.data
Normal file
281
runtime/debug/658d3e17ccb12.data
Normal file
File diff suppressed because one or more lines are too long
211
runtime/debug/658d3e198d563.data
Normal file
211
runtime/debug/658d3e198d563.data
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
141
runtime/debug/658d3e4eb9dbb.data
Normal file
141
runtime/debug/658d3e4eb9dbb.data
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -73650,3 +73650,247 @@ $_SERVER = [
|
||||
'REQUEST_TIME_FLOAT' => 1703745892.2898
|
||||
'REQUEST_TIME' => 1703745892
|
||||
]
|
||||
2023-12-28 16:14:11 [127.0.0.1][-][-][error][yii\web\HttpException:400] yii\web\BadRequestHttpException: 您提交的数据无法被验证。 in D:\blog\cxfoot\vendor\yiisoft\yii2\web\Controller.php:220
|
||||
Stack trace:
|
||||
#0 D:\blog\cxfoot\vendor\yiisoft\yii2\base\Controller.php(176): yii\web\Controller->beforeAction(Object(yii\base\InlineAction))
|
||||
#1 D:\blog\cxfoot\vendor\yiisoft\yii2\base\Module.php(552): yii\base\Controller->runAction('upload', Array)
|
||||
#2 D:\blog\cxfoot\vendor\yiisoft\yii2\web\Application.php(103): yii\base\Module->runAction('api/report-star...', Array)
|
||||
#3 D:\blog\cxfoot\vendor\yiisoft\yii2\base\Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request))
|
||||
#4 D:\blog\cxfoot\web\index.php(20): yii\base\Application->run()
|
||||
#5 {main}
|
||||
2023-12-28 16:14:11 [127.0.0.1][-][-][info][application] $_GET = [
|
||||
'left' => 'http://cxfoot.com/api/report-start/start'
|
||||
'right' => 'http://cxfoot.com/api/report-start/start'
|
||||
'id' => '11'
|
||||
]
|
||||
|
||||
$_POST = [
|
||||
'left' => '1321231'
|
||||
'right' => '213213'
|
||||
'id' => '38'
|
||||
]
|
||||
|
||||
$_FILES = []
|
||||
|
||||
$_COOKIE = []
|
||||
|
||||
$_SERVER = [
|
||||
'ALLUSERSPROFILE' => 'C:\\ProgramData'
|
||||
'APPCODE_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\appcode.vmoptions'
|
||||
'APPDATA' => 'C:\\Users\\Administrator\\AppData\\Roaming'
|
||||
'BT_PANEL' => 'D:\\BtSoft\\panel'
|
||||
'BT_PYTHON' => 'C:\\Program Files\\python'
|
||||
'BT_SETUP' => 'D:\\BtSoft'
|
||||
'CLION_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\clion.vmoptions'
|
||||
'CommonProgramFiles' => 'C:\\Program Files\\Common Files'
|
||||
'CommonProgramFiles(x86)' => 'C:\\Program Files (x86)\\Common Files'
|
||||
'CommonProgramW6432' => 'C:\\Program Files\\Common Files'
|
||||
'COMPUTERNAME' => 'PC-202004101324'
|
||||
'ComSpec' => 'C:\\Windows\\system32\\cmd.exe'
|
||||
'DATAGRIP_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\datagrip.vmoptions'
|
||||
'DATASPELL_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\dataspell.vmoptions'
|
||||
'DriverData' => 'C:\\Windows\\System32\\Drivers\\DriverData'
|
||||
'FPS_BROWSER_APP_PROFILE_STRING' => 'Internet Explorer'
|
||||
'FPS_BROWSER_USER_PROFILE_STRING' => 'Default'
|
||||
'GATEWAY_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\gateway.vmoptions'
|
||||
'GOLAND_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\goland.vmoptions'
|
||||
'HOMEDRIVE' => 'C:'
|
||||
'HOMEPATH' => '\\Users\\Administrator'
|
||||
'IDEA_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\idea.vmoptions'
|
||||
'JETBRAINSCLIENT_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\jetbrainsclient.vmoptions'
|
||||
'JETBRAINS_CLIENT_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\jetbrains_client.vmoptions'
|
||||
'LOCALAPPDATA' => 'C:\\Users\\Administrator\\AppData\\Local'
|
||||
'LOGONSERVER' => '\\\\PC-202004101324'
|
||||
'NUMBER_OF_PROCESSORS' => '6'
|
||||
'OS' => 'Windows_NT'
|
||||
'Path' => 'E:\\leidian;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\system32\\wbem;C:\\Program Files (x86)\\ATI Technologies\\ATI.ACE\\Core-Static;D:\\Git\\cmd;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files\\python;C:\\Program Files\\python\\Scripts;D:\\BtSoft\\panel\\script;D:\\phpstudy_pro\\Extensions\\php\\php7.3.4nts;D:\\svn\\bin;E:\\leidian'
|
||||
'PATHEXT' => '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
|
||||
'PHPSTORM_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\phpstorm.vmoptions'
|
||||
'PROCESSOR_ARCHITECTURE' => 'AMD64'
|
||||
'PROCESSOR_IDENTIFIER' => 'Intel64 Family 6 Model 158 Stepping 10, GenuineIntel'
|
||||
'PROCESSOR_LEVEL' => '6'
|
||||
'PROCESSOR_REVISION' => '9e0a'
|
||||
'ProgramData' => 'C:\\ProgramData'
|
||||
'ProgramFiles' => 'C:\\Program Files'
|
||||
'ProgramFiles(x86)' => 'C:\\Program Files (x86)'
|
||||
'ProgramW6432' => 'C:\\Program Files'
|
||||
'PSModulePath' => 'C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules'
|
||||
'PUBLIC' => 'C:\\Users\\Public'
|
||||
'PYCHARM_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\pycharm.vmoptions'
|
||||
'RIDER_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\rider.vmoptions'
|
||||
'RUBYMINE_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\rubymine.vmoptions'
|
||||
'SESSIONNAME' => 'Console'
|
||||
'SystemDrive' => 'C:'
|
||||
'SystemRoot' => 'C:\\Windows'
|
||||
'TEMP' => 'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp'
|
||||
'TMP' => 'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp'
|
||||
'UNRAR_LIB_PATH' => 'C:\\Program Files\\python\\Lib\\site-packages\\unrar\\UnRAR.dll'
|
||||
'USERDOMAIN' => 'PC-202004101324'
|
||||
'USERDOMAIN_ROAMINGPROFILE' => 'PC-202004101324'
|
||||
'USERNAME' => 'Administrator'
|
||||
'USERPROFILE' => 'C:\\Users\\Administrator'
|
||||
'WEBIDE_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\webide.vmoptions'
|
||||
'WEBSTORM_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\webstorm.vmoptions'
|
||||
'windir' => 'C:\\Windows'
|
||||
'HTTP_CONTENT_LENGTH' => '379'
|
||||
'HTTP_CONTENT_TYPE' => 'multipart/form-data; boundary=--------------------------982214781639805026627901'
|
||||
'HTTP_HOST' => 'cxfoot.com'
|
||||
'HTTP_CONNECTION' => 'keep-alive'
|
||||
'HTTP_ACCEPT_ENCODING' => 'gzip, deflate, br'
|
||||
'HTTP_ACCEPT' => '*/*'
|
||||
'HTTP_CACHE_CONTROL' => 'no-cache'
|
||||
'HTTP_USER_AGENT' => 'PostmanRuntime-ApipostRuntime/1.1.0'
|
||||
'REDIRECT_STATUS' => '200'
|
||||
'SERVER_NAME' => 'cxfoot.com'
|
||||
'SERVER_PORT' => '80'
|
||||
'SERVER_ADDR' => '127.0.0.1'
|
||||
'REMOTE_PORT' => '50559'
|
||||
'REMOTE_ADDR' => '127.0.0.1'
|
||||
'SERVER_SOFTWARE' => 'nginx/1.15.11'
|
||||
'GATEWAY_INTERFACE' => 'CGI/1.1'
|
||||
'REQUEST_SCHEME' => 'http'
|
||||
'SERVER_PROTOCOL' => 'HTTP/1.1'
|
||||
'DOCUMENT_ROOT' => 'D:/blog/cxfoot/web'
|
||||
'DOCUMENT_URI' => '/index.php'
|
||||
'REQUEST_URI' => '/api/report-start/upload?left=http%3A%2F%2Fcxfoot.com%2Fapi%2Freport-start%2Fstart&right=http%3A%2F%2Fcxfoot.com%2Fapi%2Freport-start%2Fstart&id=11'
|
||||
'SCRIPT_NAME' => '/index.php'
|
||||
'CONTENT_LENGTH' => '379'
|
||||
'CONTENT_TYPE' => 'multipart/form-data; boundary=--------------------------982214781639805026627901'
|
||||
'REQUEST_METHOD' => 'POST'
|
||||
'QUERY_STRING' => 'left=http%3A%2F%2Fcxfoot.com%2Fapi%2Freport-start%2Fstart&right=http%3A%2F%2Fcxfoot.com%2Fapi%2Freport-start%2Fstart&id=11'
|
||||
'PATH_TRANSLATED' => 'D:/blog/cxfoot/web'
|
||||
'PATH_INFO' => ''
|
||||
'SCRIPT_FILENAME' => 'D:/blog/cxfoot/web/index.php'
|
||||
'FCGI_ROLE' => 'RESPONDER'
|
||||
'PHP_SELF' => '/index.php'
|
||||
'REQUEST_TIME_FLOAT' => 1703751251.4177
|
||||
'REQUEST_TIME' => 1703751251
|
||||
]
|
||||
2023-12-28 17:17:06 [127.0.0.1][-][-][error][yii\base\UnknownPropertyException] yii\base\UnknownPropertyException: Getting unknown property: app\models\Report::getRawSql in D:\blog\cxfoot\vendor\yiisoft\yii2\base\Component.php:154
|
||||
Stack trace:
|
||||
#0 D:\blog\cxfoot\vendor\yiisoft\yii2\db\BaseActiveRecord.php(296): yii\base\Component->__get('getRawSql')
|
||||
#1 D:\blog\cxfoot\modules\api\models\ReportForm.php(211): yii\db\BaseActiveRecord->__get('getRawSql')
|
||||
#2 D:\blog\cxfoot\modules\api\controllers\ReportStartController.php(28): app\modules\api\models\ReportForm->getStartByStoreId(3)
|
||||
#3 [internal function]: app\modules\api\controllers\ReportStartController->actionStart()
|
||||
#4 D:\blog\cxfoot\vendor\yiisoft\yii2\base\InlineAction.php(57): call_user_func_array(Array, Array)
|
||||
#5 D:\blog\cxfoot\vendor\yiisoft\yii2\base\Controller.php(178): yii\base\InlineAction->runWithParams(Array)
|
||||
#6 D:\blog\cxfoot\vendor\yiisoft\yii2\base\Module.php(552): yii\base\Controller->runAction('start', Array)
|
||||
#7 D:\blog\cxfoot\vendor\yiisoft\yii2\web\Application.php(103): yii\base\Module->runAction('api/report-star...', Array)
|
||||
#8 D:\blog\cxfoot\vendor\yiisoft\yii2\base\Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request))
|
||||
#9 D:\blog\cxfoot\web\index.php(20): yii\base\Application->run()
|
||||
#10 {main}
|
||||
2023-12-28 17:17:06 [127.0.0.1][-][-][info][application] $_GET = []
|
||||
|
||||
$_POST = []
|
||||
|
||||
$_FILES = [
|
||||
'file' => [
|
||||
'name' => 'O1CN0136eR9E28VekEa5ssE_!!0-rate.jpg_400x400.jpg'
|
||||
'type' => 'image/jpeg'
|
||||
'tmp_name' => 'C:\\Users\\Administrator\\AppData\\Local\\Temp\\php664D.tmp'
|
||||
'error' => 0
|
||||
'size' => 24691
|
||||
]
|
||||
]
|
||||
|
||||
$_COOKIE = [
|
||||
'_csrf' => '506bad9ef8ea5fc89b9ee6a4fa1582ba1316066248d87297fc66210e49af3775a:2:{i:0'
|
||||
's:5:\"_csrf\"' => ''
|
||||
'i:1' => ''
|
||||
's:32:\"J5Zs4KBt703rDxQyCUz7lFF4P77RTkfH\"' => ''
|
||||
'}' => ''
|
||||
]
|
||||
|
||||
$_SERVER = [
|
||||
'ALLUSERSPROFILE' => 'C:\\ProgramData'
|
||||
'APPCODE_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\appcode.vmoptions'
|
||||
'APPDATA' => 'C:\\Users\\Administrator\\AppData\\Roaming'
|
||||
'BT_PANEL' => 'D:\\BtSoft\\panel'
|
||||
'BT_PYTHON' => 'C:\\Program Files\\python'
|
||||
'BT_SETUP' => 'D:\\BtSoft'
|
||||
'CLION_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\clion.vmoptions'
|
||||
'CommonProgramFiles' => 'C:\\Program Files\\Common Files'
|
||||
'CommonProgramFiles(x86)' => 'C:\\Program Files (x86)\\Common Files'
|
||||
'CommonProgramW6432' => 'C:\\Program Files\\Common Files'
|
||||
'COMPUTERNAME' => 'PC-202004101324'
|
||||
'ComSpec' => 'C:\\Windows\\system32\\cmd.exe'
|
||||
'DATAGRIP_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\datagrip.vmoptions'
|
||||
'DATASPELL_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\dataspell.vmoptions'
|
||||
'DriverData' => 'C:\\Windows\\System32\\Drivers\\DriverData'
|
||||
'FPS_BROWSER_APP_PROFILE_STRING' => 'Internet Explorer'
|
||||
'FPS_BROWSER_USER_PROFILE_STRING' => 'Default'
|
||||
'GATEWAY_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\gateway.vmoptions'
|
||||
'GOLAND_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\goland.vmoptions'
|
||||
'HOMEDRIVE' => 'C:'
|
||||
'HOMEPATH' => '\\Users\\Administrator'
|
||||
'IDEA_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\idea.vmoptions'
|
||||
'JETBRAINSCLIENT_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\jetbrainsclient.vmoptions'
|
||||
'JETBRAINS_CLIENT_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\jetbrains_client.vmoptions'
|
||||
'LOCALAPPDATA' => 'C:\\Users\\Administrator\\AppData\\Local'
|
||||
'LOGONSERVER' => '\\\\PC-202004101324'
|
||||
'NUMBER_OF_PROCESSORS' => '6'
|
||||
'OS' => 'Windows_NT'
|
||||
'Path' => 'E:\\leidian;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\system32\\wbem;C:\\Program Files (x86)\\ATI Technologies\\ATI.ACE\\Core-Static;D:\\Git\\cmd;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files\\python;C:\\Program Files\\python\\Scripts;D:\\BtSoft\\panel\\script;D:\\phpstudy_pro\\Extensions\\php\\php7.3.4nts;D:\\svn\\bin;E:\\leidian'
|
||||
'PATHEXT' => '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
|
||||
'PHPSTORM_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\phpstorm.vmoptions'
|
||||
'PROCESSOR_ARCHITECTURE' => 'AMD64'
|
||||
'PROCESSOR_IDENTIFIER' => 'Intel64 Family 6 Model 158 Stepping 10, GenuineIntel'
|
||||
'PROCESSOR_LEVEL' => '6'
|
||||
'PROCESSOR_REVISION' => '9e0a'
|
||||
'ProgramData' => 'C:\\ProgramData'
|
||||
'ProgramFiles' => 'C:\\Program Files'
|
||||
'ProgramFiles(x86)' => 'C:\\Program Files (x86)'
|
||||
'ProgramW6432' => 'C:\\Program Files'
|
||||
'PSModulePath' => 'C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules'
|
||||
'PUBLIC' => 'C:\\Users\\Public'
|
||||
'PYCHARM_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\pycharm.vmoptions'
|
||||
'RIDER_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\rider.vmoptions'
|
||||
'RUBYMINE_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\rubymine.vmoptions'
|
||||
'SESSIONNAME' => 'Console'
|
||||
'SystemDrive' => 'C:'
|
||||
'SystemRoot' => 'C:\\Windows'
|
||||
'TEMP' => 'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp'
|
||||
'TMP' => 'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp'
|
||||
'UNRAR_LIB_PATH' => 'C:\\Program Files\\python\\Lib\\site-packages\\unrar\\UnRAR.dll'
|
||||
'USERDOMAIN' => 'PC-202004101324'
|
||||
'USERDOMAIN_ROAMINGPROFILE' => 'PC-202004101324'
|
||||
'USERNAME' => 'Administrator'
|
||||
'USERPROFILE' => 'C:\\Users\\Administrator'
|
||||
'WEBIDE_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\webide.vmoptions'
|
||||
'WEBSTORM_VM_OPTIONS' => 'C:\\Users\\Administrator\\Desktop\\ja-netfilter-all\\vmoptions\\webstorm.vmoptions'
|
||||
'windir' => 'C:\\Windows'
|
||||
'HTTP_CONTENT_LENGTH' => '24937'
|
||||
'HTTP_CONTENT_TYPE' => 'multipart/form-data; boundary=--------------------------917376733031318729096852'
|
||||
'HTTP_HOST' => 'cxfoot.com'
|
||||
'HTTP_COOKIE' => '_csrf=506bad9ef8ea5fc89b9ee6a4fa1582ba1316066248d87297fc66210e49af3775a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22J5Zs4KBt703rDxQyCUz7lFF4P77RTkfH%22;%7D'
|
||||
'HTTP_CONNECTION' => 'keep-alive'
|
||||
'HTTP_ACCEPT_ENCODING' => 'gzip, deflate, br'
|
||||
'HTTP_ACCEPT' => '*/*'
|
||||
'HTTP_CACHE_CONTROL' => 'no-cache'
|
||||
'HTTP_USER_AGENT' => 'PostmanRuntime-ApipostRuntime/1.1.0'
|
||||
'REDIRECT_STATUS' => '200'
|
||||
'SERVER_NAME' => 'cxfoot.com'
|
||||
'SERVER_PORT' => '80'
|
||||
'SERVER_ADDR' => '127.0.0.1'
|
||||
'REMOTE_PORT' => '55588'
|
||||
'REMOTE_ADDR' => '127.0.0.1'
|
||||
'SERVER_SOFTWARE' => 'nginx/1.15.11'
|
||||
'GATEWAY_INTERFACE' => 'CGI/1.1'
|
||||
'REQUEST_SCHEME' => 'http'
|
||||
'SERVER_PROTOCOL' => 'HTTP/1.1'
|
||||
'DOCUMENT_ROOT' => 'D:/blog/cxfoot/web'
|
||||
'DOCUMENT_URI' => '/index.php'
|
||||
'REQUEST_URI' => '/api/report-start/start'
|
||||
'SCRIPT_NAME' => '/index.php'
|
||||
'CONTENT_LENGTH' => '24937'
|
||||
'CONTENT_TYPE' => 'multipart/form-data; boundary=--------------------------917376733031318729096852'
|
||||
'REQUEST_METHOD' => 'POST'
|
||||
'QUERY_STRING' => ''
|
||||
'PATH_TRANSLATED' => 'D:/blog/cxfoot/web'
|
||||
'PATH_INFO' => ''
|
||||
'SCRIPT_FILENAME' => 'D:/blog/cxfoot/web/index.php'
|
||||
'FCGI_ROLE' => 'RESPONDER'
|
||||
'PHP_SELF' => '/index.php'
|
||||
'REQUEST_TIME_FLOAT' => 1703755026.0155
|
||||
'REQUEST_TIME' => 1703755026
|
||||
]
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 24 KiB |
Loading…
x
Reference in New Issue
Block a user