前言:
现在兄弟们对“php如何把文件保存到本地”可能比较关注,咱们都想要了解一些“php如何把文件保存到本地”的相关知识。那么小编在网摘上网罗了一些对于“php如何把文件保存到本地””的相关资讯,希望大家能喜欢,咱们快快来了解一下吧!// 获取小程序access_token public function tpaccess_token() { $myfile = fopen("plzstoken.txt", "r"); $str=fread($myfile,filesize("plzstoken.txt")); fclose($myfile); if(!empty($str)){ $res=json_decode($str); if($res->expires_in<time()){ //过期 //小程序appid $appid = 'wx088777266d4a590f'; //小程序 APPSecret 密钥 $appsecret = ''; $url = '; . $appid . '&secret=' . $appsecret; $token_json = file_get_contents($url); //可以将转换的数组保存到数据库中,token有效时长2小时内不用重新获取了 $res = json_decode($token_json,true); $res['expires_in']=time()+7150; //加上7200s $res_en=json_encode($res,true); $myfile = fopen("plzstoken.txt", "w") or die('打开文件失败'); // fwrite($myfile, $res_en); //写入 fclose($myfile); //关闭 } $url = ';.$res->access_token; $post_data['content'] =Request()->get('content'); // var_dump(json_encode($post_data,JSON_UNESCAPED_UNICODE));exit; $res = $this->request_post($url, json_encode($post_data,JSON_UNESCAPED_UNICODE)); return $res; }else{ //小程序appid $appid = 'wx088777266d4a590f'; //小程序 APPSecret 密钥 $appsecret = ''; $url = '; . $appid . '&secret=' . $appsecret; $token_json = file_get_contents($url); //可以将转换的数组保存到数据库中,token有效时长2小时内不用重新获取了 $res = json_decode($token_json,true); $res['expires_in']=time()+7150; //加上7200s $res_en=json_encode($res,true); $myfile = fopen("plzstoken.txt", "w") or die('打开文件失败'); // fwrite($myfile, $res_en); //写入 fclose($myfile); //关闭 // return json_encode($res['access_token']); $url = ';.$res['access_token']; $post_data['content'] =Request()->get('content'); // var_dump(json_encode($post_data,JSON_UNESCAPED_UNICODE));exit; $res = $this->request_post($url, json_encode($post_data,JSON_UNESCAPED_UNICODE)); return $res; } }
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。
标签: #php如何把文件保存到本地 #php剪辑视频