| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- namespace App\Http\Models;
- use Illuminate\Database\Eloquent\Model;
- /**
- * 代理管理模型类
- */
- class Common extends Model
- {
- /**
- * 接口调用
- *
- * @access public
- * @param mixed $url 接口地址
- * @param mixed $where $params参数
- * @param mixed $timeout 请求时效
- * @return String
- */
- public function make_request($url, $params, $timeout=30)
- {
- set_time_limit(0);
- if (function_exists('curl_init') === true) {
- $ch = curl_init();
- $header = array(
- 'Accept-Language: zh-cn',
- 'Connection: Keep-Alive',
- 'Cache-Control: no-cache'
- );
- curl_setopt($ch, CURLOPT_POST, 1);
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
- if ($timeout > 0) curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
- $result = curl_exec($ch);
- $errno = curl_errno($ch);
- curl_close($ch);
- return $result;
- } else {
- $context = array(
- 'http' => array(
- 'method' => 'POST',
- 'header' => 'Content-type: application/x-www-form-urlencoded' . "\r\n" .
- 'Content-length: ' . strlen($params),
- 'content' => $params));
- if ($timeout > 0) $context['http']['timeout'] = $timeout;
- $contextid = stream_context_create($context);
- $sock = @fopen($url, 'r', false, $contextid);
- if ($sock) {
- $result = '';
- while (!feof($sock)) {
- $result .= fgets($sock, 8192);
- }
- fclose($sock);
- } else {
- return 'TimeOut';
- }
- }
- return $result;
- }//end make_request()
- /**
- * 接口调用
- *
- * @access public
- * @param mixed $paramsData 接口必要參數
- * @param mixed $url 接口地址
- * @return String
- */
- public function sportsAgentParams($paramsData, $url)
- {
- $paramsSting = '';
- $a = 0;
- foreach ($paramsData as $key => $value) {
- if ($a === 0) {
- $paramsSting .= $key . '=' . $value;
- } else {
- $paramsSting .= '&' . $key . '=' . $value;
- }
- $a++;
- }
- $params = base64_encode($paramsSting);
- $key = md5($params . session('sportsToken'));
- $loginUrl = $url . '?params=' . $params . '&Key=' . $key;
- return $loginUrl;
- }//end sportsAgentParams()
- }
|