common.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <?php
  2. use think\Db;
  3. /**
  4. * 秒转换为天
  5. */
  6. function get_stay_time($remain_time, $is_hour = 1, $is_minutes = 1)
  7. {
  8. $day = floor($remain_time / (3600*24));
  9. $day = $day > 0 ? $day.'天' : '';
  10. $hour = floor(($remain_time % (3600*24)) / 3600);
  11. $hour = $hour > 0 ? $hour.'小时' : '';
  12. if($is_hour && $is_minutes) {
  13. $minutes = floor((($remain_time % (3600*24)) % 3600) / 60);
  14. $minutes = $minutes > 0 ? $minutes.'分钟' : '';
  15. return $day.$hour.$minutes;
  16. }
  17. if($hour) {
  18. return $day.$hour;
  19. }
  20. return $day;
  21. }
  22. //获取全图片地址 $image_data
  23. function image_path($image_data){
  24. if(empty($image_data)){
  25. return $image_data;
  26. }
  27. if (strpos($image_data,'|')!==false){
  28. $image_res = explode('|',$image_data);
  29. }elseif(strpos($image_data,',')!==false){
  30. $image_res = explode(',',$image_data);
  31. }else{
  32. $image_res = array($image_data);
  33. }
  34. return $image_res;
  35. }
  36. // 获取模板区域
  37. function get_city_area()
  38. {
  39. $field=['id','pid','name'];
  40. $list=Db::table('store_area')->where('pid',0)->field($field)->select();
  41. foreach ($list as $k=>&$v){
  42. $v['children']= Db::table('store_area')->where('pid',$v['id'])->field($field)->select();
  43. }
  44. return $list;
  45. }
  46. function http_curl($url,$type='get',$res='json',$arr=''){
  47. $headers = array();
  48. //根据API的要求,定义相对应的Content-Type
  49. array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8;application/json");
  50. $curl = curl_init();
  51. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $type);
  52. curl_setopt($curl, CURLOPT_URL, $url);
  53. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  54. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  55. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  56. curl_setopt($curl, CURLOPT_HEADER, false);
  57. $output = curl_exec($curl);
  58. curl_close($curl);
  59. if($res=='json'){
  60. if($output === false){
  61. //请求失败,返回错误信息
  62. return curl_error($curl);
  63. }else{
  64. //请求成功,返回信息
  65. return json_decode($output,true);
  66. }
  67. }
  68. }
  69. // 获取物流信息
  70. function get_delivery($send_no = 'JD0053309649641',$express_code=''){
  71. error_reporting(E_ALL || ~E_NOTICE);
  72. $AppKey = 204008273;
  73. $AppSecret ='t9PavvfCeK5v2XidwyK5pWDp8b0hzMq4';
  74. $AppCode ='47f640e3529d43e28365311a530db2b7';//开通服务后 买家中心-查看AppCode
  75. $host = "https://wuliu.market.alicloudapi.com";//api访问链接
  76. $path = "/kdi";//API访问后缀
  77. $method = "GET";
  78. $body ='';
  79. $headers = array();
  80. array_push($headers, "Authorization:APPCODE " . $AppCode);
  81. $querys = "no={$send_no}&type={$express_code}"; //参数写在这里
  82. $url = $host . $path . "?" . $querys;
  83. $curl = curl_init();
  84. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  85. curl_setopt($curl, CURLOPT_URL, $url);
  86. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  87. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  88. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  89. curl_setopt($curl, CURLOPT_HEADER, true);
  90. if (1 == strpos("$" . $host, "https://")) {
  91. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  92. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  93. }
  94. $out_put = curl_exec($curl);
  95. $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
  96. list($header, $body) = explode("\r\n\r\n", $out_put, 2);
  97. if ($httpCode == 200) {
  98. return json_decode($body,true)['result'];
  99. } else {
  100. return [];
  101. }
  102. }
  103. // 元石日志
  104. function crystal_log($user_id,$crystal,$desc,$type,$rel_id=0)
  105. {
  106. $log_data = [
  107. 'user_id' => $user_id,
  108. 'create_at' => date('Y-m-d H:i:s'),
  109. 'crystal' => $crystal,
  110. 'desc' => $desc,
  111. 'type' => $type,
  112. 'rel_id' => $rel_id,
  113. ];
  114. Db::table('crystal_info')->insert($log_data);
  115. }
  116. // 实名认证
  117. function user_certification($id_card,$name){
  118. $host = "http://checkone.market.alicloudapi.com";
  119. $path = "/chinadatapay/1882";
  120. $method = "POST";
  121. $appcode = "30be8bdcc65842919980a8276ffc4995";
  122. $headers = array();
  123. array_push($headers, "Authorization:APPCODE " . $appcode);
  124. //根据API的要求,定义相对应的Content-Type
  125. array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
  126. $bodys = "idcard=".$id_card."&name=".$name;
  127. $url = $host . $path;
  128. $curl = curl_init();
  129. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  130. curl_setopt($curl, CURLOPT_URL, $url);
  131. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  132. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  133. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  134. curl_setopt($curl, CURLOPT_HEADER, false);
  135. if (1 == strpos("$".$host, "https://"))
  136. {
  137. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  138. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  139. }
  140. curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
  141. $res = curl_exec($curl);
  142. if($res){
  143. $res = json_decode($res,true);
  144. if($res['data']['result'] == 1){
  145. return 1;
  146. }else{
  147. return 0;
  148. }
  149. }else{
  150. return 0;
  151. }
  152. }
  153. // 刷新页面
  154. function to_reload()
  155. {
  156. if(input('reloaded') !=1) {
  157. echo "<script>
  158. location.href=location.href+'&reloaded=1';
  159. location.reload();
  160. </script>";
  161. }
  162. }
  163. function shoucang(){
  164. $host = "http://180.76.141.31:8888/cz/call";
  165. $method = "POST";
  166. $headers = array();
  167. array_push($headers, "Content-Type".":"."application/json; charset=UTF-8");
  168. $bodys = array(
  169. 'key' => 'test2',
  170. 'userkey' => '12344',
  171. 'product' => json_encode(array('name'=>'test','count'=>7))
  172. );
  173. $curl = curl_init();
  174. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  175. curl_setopt($curl, CURLOPT_URL, $host);
  176. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  177. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  178. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  179. curl_setopt($curl, CURLOPT_HEADER, false);
  180. if (1 == strpos("$".$host, "https://"))
  181. {
  182. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  183. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  184. }
  185. curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($bodys));
  186. $res = curl_exec($curl);
  187. var_dump($res);exit();
  188. }