摘要:
1. 首先先下载安装ResHacker,然后打开"Resource Hacker"; 链接:https://pan.baidu.com/s/1GY6AHaKtLiXd8Tjc4HkRIA 提取码:ad26 复制这段内容后打开百度网盘手机App,操作更方便哦 2、然后file - open打开要替换图 阅读全文
摘要:
工作原理: 备注: opcache.file_cache缓存为本地文件仅php7以后支持。php5未支持该配置,仅可用户脚本加速。 一、安装opcache. windows扩展下载地址 https://windows.php.net/downloads/pecl/releases/opcache/ 阅读全文
摘要:
一、下载php-beast 登录sshwget https://github.com/liexusong/php-beast/archive/master.zip 解压:unzip master.zip 进入解压目录:cd php-beast-master 查找php目录下phpize文件并执行它。 阅读全文
摘要:
一、先上效果图 二、HTML部分代码 阅读全文
摘要:
一、获取扫码登录授权二维码 html部分 <div id="login_container"></div> <script src="http://res.wx.qq.com/connect/zh_CN/htmledition/js/wxLogin.js"></script> 阅读全文
摘要:
<?phpclass Image { private $file; private $image; private $width; private $height; private $bits; private $mime; /** * 图片路径 * Image constructor. * @pa 阅读全文
摘要:
1、微信退款需要双向证书 2、微信金额 需要 乘以100 ,以分为单位。 阅读全文
摘要:
进入宝塔面板官网 https://www.bt.cn/bbs/thread-19376-1-1.html Centos安装命令:(安装宝塔面板) yum install -y wget && wget -O install.sh http://download.bt.cn/install/insta 阅读全文
摘要:
var file = document.getElementById("file").files[0];function getObjectURL(file){ var url = null ; if (window.createObjectURL!=undefined) { // basic ur 阅读全文
摘要:
今天有一个需求需要一个账号登录多个网站后台。所以写了一个简易密文验证函数,用户网站后台登录。代码如下function auth_passWord($operation="ENCODE",$str=""){ if($operation == "DECODE"){//验证密文 $str = base64 阅读全文