龙空技术网

不用数据库也能在本地存数据 php

趣资源视频剪辑 38

前言:

现在兄弟们对“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剪辑视频