Commit cb361e36 by 杨昕

test

parent d36a6f8b
Pipeline #14011 passed with stages
in 59 seconds
...@@ -10,6 +10,9 @@ class TestController extends Controller ...@@ -10,6 +10,9 @@ class TestController extends Controller
// //
function index(Request $request){ function index(Request $request){
phpinfo();
// $staffNo = $request->username??"yf60144"; // $staffNo = $request->username??"yf60144";
// $url = 'http://api-mis.offcn.com/index.php/applogin/isworking'; // $url = 'http://api-mis.offcn.com/index.php/applogin/isworking';
// $data = sign($staffNo); // $data = sign($staffNo);
...@@ -25,24 +28,24 @@ class TestController extends Controller ...@@ -25,24 +28,24 @@ class TestController extends Controller
// $userInfo = json_decode($result,true); // $userInfo = json_decode($result,true);
$staffNo = $request->username??"yf60144";; // $staffNo = $request->username??"yf60144";;
$url = 'http://api-mis.offcn.com/index.php/applogin/isworking'; // $url = 'http://api-mis.offcn.com/index.php/applogin/isworking';
$data = sign($staffNo); // $data = sign($staffNo);
$data['type'] = 6; // $data['type'] = 6;
$data['username'] = $staffNo; // $data['username'] = $staffNo;
$ch = curl_init(); // $ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url); // curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true); // curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); // curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_HEADER, false); // curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 10); // curl_setopt($ch, CURLOPT_TIMEOUT, 10);
$result = curl_exec($ch); // $result = curl_exec($ch);
//
$userInfo = json_decode($result,true); // $userInfo = json_decode($result,true);
//
//
var_dump($userInfo); // var_dump($userInfo);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment