common.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724
  1. <?php
  2. // 应用公共文件
  3. use think\facade\Config;
  4. use think\facade\Db;
  5. use think\facade\Filesystem;
  6. // 应用公共文件
  7. function app_show($code=0,$message="",$data=[]){
  8. $result = ['code'=>$code,"message"=>$message,"data"=>$data];
  9. echo json_encode($result,JSON_UNESCAPED_UNICODE);
  10. die();
  11. }
  12. // 应用公共文件
  13. function error_show($code=0,$message=""){
  14. $result = ['code'=>$code,"message"=>$message];
  15. echo json_encode($result,JSON_UNESCAPED_UNICODE);
  16. die();
  17. }
  18. function GetUserInfo($token){
  19. $host = Config::get("app");
  20. $url = $host["api_host"]."/Api/userinfo";
  21. $data=[
  22. "token"=>$token
  23. ];
  24. $response=curl_request($url,$data);
  25. return json_decode($response,true);
  26. }
  27. //参数1:访问的URL,参数2:post数据(不填则为GET),参数3:提交的$cookies,参数4:是否返回$cookies
  28. function curl_request($url,$post=''){
  29. $curl = curl_init();
  30. curl_setopt($curl, CURLOPT_URL, $url);
  31. curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)');
  32. curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
  33. curl_setopt($curl, CURLOPT_AUTOREFERER, 1);
  34. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  35. if($post) {
  36. curl_setopt($curl, CURLOPT_POST, 1);
  37. curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($post));
  38. }
  39. curl_setopt($curl, CURLOPT_TIMEOUT, 10);
  40. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  41. $data = curl_exec($curl);
  42. if (curl_errno($curl)) {
  43. return curl_error($curl);
  44. }
  45. curl_close($curl);
  46. return $data;
  47. }
  48. /**手机号验证
  49. * @param $mobile
  50. * @return bool
  51. */
  52. function checkMobile($mobile){
  53. if (!is_numeric($mobile)) {
  54. return false;
  55. }
  56. return preg_match('#^1[3,4,5,6,7,8,9]{1}[\d]{9}$#', $mobile) ? true : false;
  57. }
  58. function checkTel($tel){
  59. if (!$tel) {
  60. return false;
  61. }
  62. return preg_match('/^(0[0-9]{2,3}\-)([0-9]{7,8})+(\-[0-9]{1,4})?$/', $tel) ? true : false;
  63. }
  64. /**邮箱验证
  65. * @param $email
  66. * @return bool
  67. */
  68. function checkEmail($email){
  69. if (!$email) {
  70. return false;
  71. }
  72. return preg_match('#[a-z0-9&\-_.]+@[\w\-_]+([\w\-.]+)?\.[\w\-]+#is', $email) ? true : false;
  73. }
  74. /**
  75. * @param
  76. * @return int
  77. */
  78. function makeSalt(){
  79. $salt = rand(10000000,99999999);
  80. return $salt;
  81. }
  82. /**
  83. * @param $token
  84. * @return array
  85. * @throws \think\db\exception\DataNotFoundException
  86. * @throws \think\db\exception\DbException
  87. * @throws \think\db\exception\ModelNotFoundException
  88. * @throws \think\exception\DbException
  89. */
  90. function VerifyTokens($token){
  91. $host = Config::get("app");
  92. $url = $host["api_host"]."/Api/verify_token";
  93. $data=[
  94. "token"=>$token
  95. ];
  96. $response=curl_request($url,$data);
  97. return json_decode($response,true);
  98. }
  99. /**
  100. * @param $token
  101. * @param $condition
  102. * @return mixed
  103. */
  104. function GetUserlist($token,$condition){
  105. $host = Config::get("app");
  106. $url = $host["api_host"]."/Api/getuserlist";
  107. $condition['token']=$token;
  108. $response=curl_request($url,$condition);
  109. return json_decode($response,true);
  110. }
  111. /**
  112. * @param $token
  113. * @param $condition
  114. * @return mixed
  115. */
  116. function GetAccountall($token, $condition){
  117. $host = Config::get("app");
  118. $url = $host["api_host"]."/Api/userall";
  119. $condition['token']=$token;
  120. $response=curl_request($url,$condition);
  121. return json_decode($response,true);
  122. }
  123. function GetList($token,$condition){
  124. $host = Config::get("app");
  125. $url = $host["api_host"]."/Api/userlist";
  126. $condition['token']=$token;
  127. $response=curl_request($url,$condition);
  128. return json_decode($response,true);
  129. }
  130. /**
  131. * @param $token
  132. * @param $condition ['id'=>1]
  133. * @return mixed
  134. */
  135. function GetInfoById($token,$condition){
  136. $host = Config::get("app");
  137. $url = $host["api_host"]."/Api/userinfobyid";
  138. $condition['token']=$token;
  139. $response=curl_request($url,$condition);
  140. return json_decode($response,true);
  141. }
  142. function makeNo($str){
  143. $date=date("mdHis");
  144. $year = date("Y")-2000;
  145. $msec=rand(1000,9999);
  146. return $str.$year.$date.$msec;
  147. }
  148. function randomkeys($length) {
  149. $returnStr='';
  150. $pattern = '1234567890abcdefghijklmnopqrstuvwxyz';//ABCDEFGHIJKLOMNOPQRSTUVWXYZ
  151. for($i = 0; $i < $length; $i ++) {
  152. $returnStr .= $pattern[mt_rand ( 0, strlen($pattern)-1 )]; //生成php随机数
  153. }
  154. return $returnStr;
  155. }
  156. function tree(){
  157. }
  158. /**
  159. * @param $files
  160. * @return array
  161. */
  162. function UploadImg($files)
  163. {
  164. $savename = [];
  165. $files = !is_array($files) ? [$files] : $files;
  166. try {
  167. //验证
  168. validate(['imgFile' => ['fileSize' => 10240000, 'fileExt' => 'jpg,jpeg,png,bmp,gif', 'fileMime' => 'image/jpeg,image/png,image/gif']])->check(['imgFile' => $files]);
  169. foreach ($files as $file) {
  170. $url = Filesystem::disk('public')->putFile('topic/' . date("Ymd"), $file, function () use ($file) {
  171. return str_replace('.' . $file->getOriginalExtension(), '', $file->getOriginalName() . "_" . date('YmdHis'));
  172. });
  173. $name = str_replace('.' . $file->getOriginalExtension(), '', $file->getOriginalName());
  174. $temp = ["url" => $url, "name" => $name];
  175. $savename[] = $temp;
  176. }
  177. return $savename;
  178. } catch (\think\exception\ValidateException $e) {
  179. return $e->getMessage();
  180. }
  181. }
  182. /**
  183. * @param $files
  184. * @return array
  185. */
  186. function UploadFile($files)
  187. {
  188. $savename = [];
  189. $files = !is_array($files) ? [$files] : $files;
  190. try {
  191. //验证
  192. validate(['imgFile' => ['fileSize' => 10240000,'fileExt' => 'xlsx,xls,pdf,zip,rar,7z']])->check(['imgFile' =>
  193. $files]);
  194. foreach ($files as $file) {
  195. $url = Filesystem::disk('public')->putFile('files/' . date("Ymd"), $file, function () use ($file) {
  196. return str_replace('.' . $file->getOriginalExtension(), '', $file->getOriginalName() . "_" . date('YmdHis'));
  197. });
  198. $name = str_replace('.' . $file->getOriginalExtension(), '', $file->getOriginalName());
  199. $temp = ["url" => $url, "name" => $name];
  200. $savename[] = $temp;
  201. }
  202. return $savename;
  203. } catch (\think\exception\ValidateException $e) {
  204. return $e->getMessage();
  205. }
  206. }
  207. /**
  208. * @param $files
  209. * @return array
  210. */
  211. function UploadVideo($files)
  212. {
  213. $savename = [];
  214. $files = !is_array($files) ? [$files] : $files;
  215. try {
  216. //验证
  217. validate(['videoFile' => ['fileSize' => 10240000,'fileExt' => 'mp4,mp3,avi']])->check(['videoFile' => $files]);
  218. foreach ($files as $file) {
  219. $url = Filesystem::disk('public')->putFile('video/' . date("Ymd"), $file, function () use ($file) {
  220. return str_replace('.' . $file->getOriginalExtension(), '', $file->getOriginalName() . "_" . date('YmdHis'));
  221. });
  222. $name = str_replace('.' . $file->getOriginalExtension(), '', $file->getOriginalName());
  223. $temp = ["url" => $url, "name" => $name];
  224. $savename[] = $temp;
  225. }
  226. return $savename;
  227. } catch (\think\exception\ValidateException $e) {
  228. return $e->getMessage();
  229. }
  230. }
  231. /**
  232. * @param $token
  233. * @param $condition
  234. * @return mixed
  235. */
  236. function resetpwd($token,$condition){
  237. $host = Config::get("app");
  238. $url = $host["api_host"]."/Api/passset";
  239. $condition['token']=$token;
  240. $response=curl_request($url,$condition);
  241. return json_decode($response,true);
  242. }
  243. function resetpasswd($token,$condition){
  244. $host = Config::get("app");
  245. $url = $host["api_host"]."/Api/passsave";
  246. $condition['token']=$token;
  247. $response=curl_request($url,$condition);
  248. return json_decode($response,true);
  249. }
  250. /**
  251. * @param $token
  252. * @param $condition
  253. * @return mixed
  254. */
  255. function resetinfo($token,$condition){
  256. $host = Config::get("app");
  257. $url = $host["api_host"]."/Api/usersave";
  258. $condition['token']=$token;
  259. $response=curl_request($url,$condition);
  260. return json_decode($response,true);
  261. }
  262. /**
  263. * @param $token
  264. * @param $condition
  265. * @return mixed
  266. */
  267. function resetstatus($token,$condition){
  268. $host = Config::get("app");
  269. $url = $host["api_host"]."/Api/userstatus";
  270. $condition['token']=$token;
  271. $response=curl_request($url,$condition);
  272. return json_decode($response,true);
  273. }
  274. /**
  275. * @param $data
  276. * @throws \think\db\exception\DataNotFoundException
  277. * @throws \think\db\exception\DbException
  278. * @throws \think\db\exception\ModelNotFoundException
  279. */
  280. function crea($data,$vio=0)
  281. {
  282. $db = Db::name("company_item")->where(['pid'=>$data['id'],'is_del'=>0])->select()->toArray();
  283. if($vio==1){
  284. $d = Db::name("depart_user")->where(['itemid'=>$data['id'],'is_del'=>0])->select()->toArray();
  285. if(empty($d)){
  286. $data['item']=[];
  287. }else{
  288. $data['item']=$d;
  289. }
  290. }
  291. if(empty($db)){
  292. $data['child']=[];
  293. return $data;
  294. }
  295. //var_dump($db);
  296. foreach ($db as $p){
  297. $data['child'][]=crea($p,$vio);
  298. }
  299. return $data;
  300. }
  301. function GetPart($id,$data=[]){
  302. $db = Db::name("company_item")->where(['id'=>$id,'is_del'=>0])->find();
  303. if($db==false){
  304. return [];
  305. }
  306. $tem=[];
  307. $tem['id']=$db['id'];
  308. $tem['name']=$db['name'];
  309. array_unshift($data,$tem);
  310. if($db['pid']==0){
  311. // krsort($data);
  312. return $data;
  313. }else{
  314. return GetPart($db['pid'],$data);
  315. }
  316. }
  317. function stro($data){
  318. $db=Db::name('cat')->where(['pid'=>$data['id']])->select()->toArray();
  319. if(empty($db)){
  320. $data['child']=[];
  321. return $data;
  322. }
  323. foreach ($db as $item) {
  324. $data['child'][]=stro($item);
  325. }
  326. return $data;
  327. }
  328. function coco($data){
  329. $db=Db::name('exclusive')->where(['pid'=>$data['id']])->select()->toArray();
  330. if(empty($db)){
  331. $data['child']=[];
  332. return $data;
  333. }
  334. foreach ($db as $item) {
  335. $data['child'][]=coco($item);
  336. }
  337. return $data;
  338. }
  339. function mai($var,$data=[]){
  340. $str = Db::name('exclusive')->where(['id'=>$var])->find();
  341. if($str==false){
  342. return [];
  343. }
  344. $vmn =[];
  345. $vmn['id'] =$str['id'];
  346. $vmn['rname'] =$str['name'];
  347. array_unshift($data,$vmn);
  348. // $var['id']=made();
  349. if($str['pid']==0){
  350. // krsort($data);
  351. return $data;
  352. }else{
  353. return mai($str['pid'],$data);
  354. }
  355. }
  356. function made($var,$data=[]){
  357. $str = Db::name('cat')->where(['id'=>$var])->find();
  358. if($str==false){
  359. return [];
  360. }
  361. $vmn =[];
  362. $vmn['id'] =$str['id'];
  363. $vmn['name'] =$str['cat_name'];
  364. array_unshift($data,$vmn);
  365. // $var['id']=made();
  366. if($str['pid']==0){
  367. // krsort($data);
  368. return $data;
  369. }else{
  370. return made($str['pid'],$data);
  371. }
  372. }
  373. function sear($id){
  374. $item = Db::name('cat')->where(['id'=>$id])->field("search")->find();
  375. if($item==false){
  376. return false;
  377. }else{
  378. $temp = Db::name('cat')->where(['pid'=>$id,'is_del'=>0])->select();
  379. if ($temp==false){
  380. return false;
  381. }
  382. }
  383. foreach ($temp as $value){
  384. $value['search']=$item['search']."_".$value['cat_name'];
  385. $list = Db::name('cat')->save($value);
  386. sear($id);
  387. }
  388. }
  389. function manger($list=[],$level=1){
  390. $var = Db::name('cat')->where(['pid'=>$list,'level'=>$level+1])->column("id");
  391. if(empty($var)){
  392. return $list;
  393. }
  394. $a=array_merge($list,$var);
  395. return manger($a,$level+1);
  396. }
  397. /**
  398. * @param $files
  399. * @param string $extend
  400. * @return array
  401. * @throws PHPExcel_Exception
  402. * @throws PHPExcel_Reader_Exception
  403. */
  404. function upload_excel($files,$extend="xls")
  405. {
  406. // 获取表单上传文件
  407. try {
  408. validate([
  409. 'file' => [
  410. // 限制文件大小(单位b),这里限制为4M
  411. //fileSize' => 4 * 1024 * 1024,
  412. 'fileExt' => 'xlsx,xls'
  413. ]
  414. ],
  415. [
  416. //'file.fileSize' => '文件太大',
  417. 'file.fileExt' => '不支持的文件',
  418. ]
  419. )->check(['file' => $files]);
  420. // $name = $files->getOriginalExtension();
  421. if ($extend == 'xlsx') {
  422. $objReader = PHPExcel_IOFactory::createReader('Excel2007');
  423. } else {
  424. $objReader = PHPExcel_IOFactory::createReader('Excel5');
  425. }
  426. $savename = Filesystem::disk('public')->putFile('topic/excel', $files);
  427. $import_path = root_path() . 'public/storage/' . $savename;
  428. $spreadsheet = $objReader->load($import_path);
  429. $sheet = $spreadsheet->getActiveSheet();
  430. $sheetData = $sheet->toArray();
  431. if (empty($sheetData) || !is_array($sheetData)) {
  432. return ['code' => 1003, "msg" => '数据不能为空'];
  433. }
  434. $list = [];
  435. foreach ($sheetData as $key => $value) {
  436. $list[] = $value;
  437. }
  438. return ['code' => 0, "msg" => '数据解析成功', 'data' => $list];
  439. } catch (think\exception\ValidateException $e) {
  440. // echo $e->getMessage();
  441. return ['code' => 1003, "msg" => $e->getMessage()];
  442. }
  443. }
  444. /**
  445. * @param string $fileName
  446. * @param array $headArr
  447. * @param array $data
  448. */
  449. function excelSave($fileName = '', $headArr = [], $data = [])
  450. {
  451. $objPHPExcel = new PHPExcel();
  452. $objPHPExcel->getProperties();
  453. $keyA = 0; // 设置表头
  454. foreach ($headArr as $v) {
  455. $colum = PHPExcel_Cell::stringFromColumnIndex($keyA);
  456. $objPHPExcel->setActiveSheetIndex(0)->setCellValue($colum . '1', $v);
  457. $keyA += 1;
  458. }
  459. $column = 2;
  460. $objActSheet = $objPHPExcel->getActiveSheet();
  461. foreach ($data as $key => $rows) { // 行写入
  462. $span = 0;
  463. foreach ($rows as $keyName => $value) { // 列写入
  464. //判断数据是否有数组,如果有数组,转换成字符串
  465. if(is_array($value)){
  466. $value = implode("、", $value);
  467. }
  468. $objActSheet->setCellValue(PHPExcel_Cell::stringFromColumnIndex($span) . $column, $value);
  469. $span++;
  470. }
  471. $column++;
  472. }
  473. // var_dump($objActSheet->getActiveCell());
  474. $file = $fileName. ".xls";
  475. //$fileName .= "_" . date("Y_m_d", Request()->instance()->time()) . ".xls";
  476. //$fileName = iconv("utf-8", "gb2312", $fileName); // 重命名表
  477. $dir =root_path() . 'public/storage/report/'.date("YmdHis")."/";
  478. if(!is_dir($dir)){
  479. mkdir($dir,0777,true);
  480. }
  481. $objPHPExcel->setActiveSheetIndex(0); // 设置活动单指数到第一个表,所以Excel打开这是第一个表
  482. $objWriter = \PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
  483. $objWriter->save($dir . $file); // 文件通过浏览器下载
  484. $url = $dir . $file;
  485. if(!file_exists($url)){
  486. echo "文件生成失败";
  487. }
  488. $saveDir = root_path()."public/storage/zip/";
  489. if(!is_dir( $saveDir)){
  490. mkdir($saveDir,0777,true);
  491. }
  492. $datetime = date("Y-m-d H:i:s");
  493. $file_dir = $saveDir.$datetime.".zip";
  494. # 5.1 文件打包,提示:使用本类,linux需开启zlib,windows需取消php_zip.dll前的注释
  495. $zip = new \ZipArchive ();
  496. # 5.2 文件不存在则生成一个新的文件 用CREATE打开文件会追加内容至zip
  497. if ($zip->open($file_dir, \ZipArchive::OVERWRITE) !== true && $zip->open($file_dir, \ZipArchive::CREATE) !==
  498. true) echo '无法打开文件或者文件创建失败';
  499. # 5.3 批量写入压缩包
  500. $zip->addEmptyDir($fileName);
  501. // @$zip->addFile($v['file_path'], 'resume'.DIRECTORY_SEPARATOR.basename($headername));
  502. @$zip->addFile($url,$fileName.DIRECTORY_SEPARATOR.basename($url));
  503. # 5.4 关闭压缩包写入
  504. $zip->close();
  505. @deldir($dir);
  506. # 6. 检查文件是否存在,并输出文件
  507. if (! file_exists ( $file_dir )) echo '简历文件不存在';
  508. ob_clean();
  509. flush();
  510. header("Cache-Control: max-age=0");
  511. header("Content-Description: File Transfer");
  512. header('Content-disposition: attachment; filename=' . basename($file_dir)); # 处理文件名
  513. header("Content-Type: application/octet-stream"); # 流文件输出
  514. header("Content-Transfer-Encoding: binary"); # 告诉浏览器,这是二进制文件
  515. header('Content-Length: ' . filesize($file_dir)); # 告诉浏览器,文件大小
  516. readfile($file_dir); # 输出文件
  517. @ unlink($file_dir);
  518. exit();
  519. }
  520. function deldir($path){
  521. //如果是目录则继续
  522. if(is_dir($path)){
  523. //扫描一个文件夹内的所有文件夹和文件并返回数组
  524. $p = scandir($path);
  525. //如果 $p 中有两个以上的元素则说明当前 $path 不为空
  526. if(count($p)>2){
  527. foreach($p as $val){
  528. //排除目录中的.和..
  529. if($val !="." && $val !=".."){
  530. //如果是目录则递归子目录,继续操作
  531. if(is_dir($path.$val)){
  532. //子目录中操作删除文件夹和文件
  533. deldir($path.$val.'/');
  534. }else{
  535. //如果是文件直接删除
  536. unlink($path.$val);
  537. }
  538. }
  539. }
  540. }
  541. }
  542. //删除目录
  543. return rmdir($path);
  544. }
  545. /**
  546. * @param string $AddrJson
  547. */
  548. function GetAddr($AddrJson=""){
  549. if($AddrJson==""){
  550. return '';
  551. }
  552. $adr = json_decode($AddrJson,true);
  553. if(!is_array($adr)){
  554. return '';
  555. }
  556. $addr='';
  557. if(isset($adr['provice_code'])&&$adr['provice_code']!=''){
  558. $provice = Db::name("province")->where(["province_code"=>$adr['provice_code']])->find();
  559. $addr.=isset($provice['name']) ? $provice['name']:"";
  560. }
  561. if(isset($adr['city_code'])&&$adr['city_code']!=''){
  562. $city = Db::name("city")->where(["city_code"=>$adr['city_code']])->find();
  563. $addr.=isset($city['name']) ? $city['name']:"";
  564. }
  565. if(isset($adr['area_code'])&&$adr['area_code']!=''){
  566. $area = Db::name("area")->where(["area_code"=>$adr['area_code']])->find();
  567. $addr.=isset($area['name']) ? $area['name']:"";
  568. }
  569. return $addr;
  570. }
  571. /**
  572. * POST 请求
  573. * @param string $url
  574. * @param array $param
  575. * @param boolean $post_file 是否文件上传
  576. * @return string content
  577. */
  578. function post($url,$data,$header=[])
  579. {
  580. //对空格进行转义
  581. $url = str_replace(' ','+',$url);
  582. $ch = curl_init();
  583. //设置选项,包括URL
  584. curl_setopt($ch, CURLOPT_URL, "$url");
  585. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  586. curl_setopt($ch, CURLOPT_HEADER, 0);
  587. curl_setopt($ch,CURLOPT_TIMEOUT,3); //定义超时3秒钟
  588. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  589. // POST数据
  590. // curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  591. curl_setopt($ch, CURLOPT_POST, 1);
  592. // 把post的变量加上
  593. curl_setopt($ch, CURLOPT_POSTFIELDS, $data); //所需传的数组用http_bulid_query()函数处理一下,就ok了
  594. curl_setopt($ch, CURLOPT_HEADER, true);
  595. //执行并获取url地址的内容
  596. $output = curl_exec($ch);
  597. $errorCode = curl_errno($ch);
  598. //释放curl句柄
  599. $headerSize = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
  600. // 根据头大小去获取头信息内容
  601. $header = substr($output, 0, $headerSize);
  602. curl_close($ch);
  603. if(0 !== $errorCode) {
  604. return false;
  605. }
  606. return $header;
  607. }
  608. function post2($url,$data,$header=[])
  609. {
  610. //对空格进行转义
  611. $url = str_replace(' ','+',$url);
  612. $ch = curl_init();
  613. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  614. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  615. //设置选项,包括URL
  616. curl_setopt($ch, CURLOPT_URL, "$url");
  617. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  618. curl_setopt($ch, CURLOPT_HEADER, 0);
  619. // POST数据
  620. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  621. curl_setopt($ch, CURLOPT_POST, 1);
  622. // 把post的变量加上
  623. curl_setopt($ch, CURLOPT_POSTFIELDS, $data); //所需传的数组用http_bulid_query()函数处理一下,就ok了
  624. $output = curl_exec($ch);
  625. $errorCode = curl_errno($ch);
  626. curl_close($ch);
  627. if(0 !== $errorCode) {
  628. return false;
  629. }
  630. return $output;
  631. }
  632. function GoldPrice($data,$cost_rate=0){
  633. $gold = Db::name("gold_price1")->where(["type"=>$data["metal_id"],"is_del"=>0,"status"=>1])->order("addtime desc")
  634. ->find();
  635. $rate = $data['open_fee']/$data['num'] + $data['weight']* $gold["price"] + $data['cost_fee']/(1-$cost_rate) *
  636. $data['weight']+$data['packing_fee']+$data["mark_fee"]+$data["cert_fee"]+$data['nake_fee'];
  637. return $rate;
  638. }
  639. function GoodPrice($data,$cost_rate=0){
  640. $rate = ($data['open_fee']/$data['num']+ $data['cost_fee']+$data['packing_fee']+$data["mark_fee"]+$data["cert_fee"]+$data['nake_fee'])/(1-$cost_rate
  641. );
  642. return $rate;
  643. }