redirect('@admin'); $version = Db::query('select version() as ver'); $version = array_pop($version); $this->assign('mysql_ver', $version['ver']); return view(); } public function test() { $DEVICE_NO = 'kdt1080126'; $key = '20585'; $content = ""; $content .= "^Q +http://weixin.qq.com/r/2Eg2LkzEKRFWrQhN9123"; $result = $this->sendSelfFormatOrderInfo($DEVICE_NO, $key, 1, $content); var_dump($result); } function sendSelfFormatOrderInfo($device_no, $key, $times, $orderInfo) { // $times打印次数 $selfMessage = array( 'deviceNo' => $device_no, 'printContent' => $orderInfo, 'key' => $key, 'times' => $times ); $url = "http://open.printcenter.cn:8080/addOrder"; $options = [ 'http' => [ 'header' => "Content-type: application/x-www-form-urlencoded ", 'method' => 'POST', 'content' => http_build_query($selfMessage), ], ]; $context = stream_context_create($options); $result = file_get_contents($url, false, $context); return $result; } }