摘要:
一、效果图 阅读全文
摘要:
一、效果图 二、代码 function get_server_info() { // 定义输出常量 define('YES', 'Yes'); define('NO', '<span style="color:red">No</span>'); // 服务器系统 $data['php_os'] = 阅读全文
摘要:
一、效果图 二、http.js网络请求封装 import { config } from '../config.js' import md5 from 'js-md5' import { aes_encrypt, aes_decrypt } from '@/utils/aes_endecrypt.j 阅读全文
摘要:
一、加密方式一 function encode_file_contents($filename, $dst = '') { $type=strtolower(substr(strrchr($filename,'.'),1)); if ('php' == $type && is_file($filen 阅读全文
摘要:
一、下载 https://gitee.com/hnaoyun/PbootCMS/ 二、开发文档 https://www.pbootcms.com/docs/ 三、模板网 https://www.pbootcms.com/cooperation/ 阅读全文
摘要:
一、效果图 二、代码 <vue-ueditor-wrap v-model="form.content" @ready="ready" :config="editorConfig" @beforeInit="addImageButton" style="line-height: initial;">< 阅读全文
摘要:
一、阿里云 /** * Created by PhpStorm. * User: Mr.Yang * Date: 2022/4/13 * Time: 10:14 * QQ: 2575404985 */ namespace app\api\controller; use OSS\OssClient; 阅读全文
摘要:
一、代码 1、php //解密函数 function myDecode($txt, $key = 'YangYang') { $txt = urldecode($txt); $chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0 阅读全文
摘要:
一、代码 import VueResource from 'vue-resource' Vue.use(VueResource) //网络请求拦截器 Vue.http.interceptors.push(function(request, next){ //设置请求地址 request.url = 阅读全文