- 博客(16)
- 资源 (9)
- 收藏
- 关注
原创 万能js复制文本代码插件(仅3kb,无flash)
经常遇到需要一键复制粘贴的js功能,经过对方寻找终于找到了这个神库。:github的代码部分地区无法直接引用,需要自行下载。使用方法十分简单 看管网的example即可。
2022-12-25 10:47:10 232 1
原创 PHP img标签替换为mip-img标签的方法
function replaceMipImages($content){ preg_match_all('/<img (.*?)\>/', $content, $images); if(!is_null($images)) { foreach($images[1] as $index => $value){ $mip_...
2020-01-09 13:36:26 504
原创 PHP7根目录可以采集,子目录不行的神奇的错误
PHP7$url = "https://www.baidu.com/";$html = file_get_content($url);没有找到原因! 根目录可以运行 子目录直接500本地环境以前写的子目录采集也没有问题什么坑?...
2019-10-25 10:40:02 271
原创 百度小程序swiper爬坑 解决不了自适应
.swan <swiper indicator-color="rgba(0,0,0,0.30)" indicator-active-color="#fff" duration="{{switchDuration}}" interval="{{autoPlayInterval}}" ...
2019-09-27 09:19:03 539
原创 通用js复制到剪贴板
<button data-clipboard-text="想粘贴啥就粘贴啥">复制</button><script src='https://clipboardjs.com/dist/clipboard.min.js'></script><script> var btns = document.querySelectorAll(...
2019-08-09 11:54:43 2617
原创 网页js热键 jQuery快捷键插件:js-hotkeys
<script src="https://unpkg.com/hotkeys-js/dist/hotkeys.min.js"></script><script type="text/javascript">hotkeys('enter', function(event,handler) { alert(111);});</script>...
2019-08-08 14:45:51 847
原创 php直接操作mysql
set_time_limit(0); error_reporting(NULL); header("Content-type: text/html; charset=GBK"); date_default_timezone_set(PRC);$t1 = microtime(true);$conn = @ mysql_connect("localhost:3306", "r
2017-12-30 16:07:45 232
原创 js计算月份代码 上个月-下个月
/*默认显示上个月的日期*/var nowdays = new Date();var year = nowdays.getFullYear();var month = nowdays.getMonth();if(month==0){ month=12; year=year-1;}if (month < 10) { month = "0"
2017-12-14 16:20:39 13549
原创 php微信支付官方SDK简单开发
首先要配置好 WxPay.Config.php内的 APPID MCHID KEY 问题1:错误码58 退款需要证书 配置SSLCERT_PATH SSLKEY_PATH 要写绝对路径 不然会错误码58问题2:错误码60 WxPay.Api.php修改 curl_setopt($ch,CURLOPT_SSL_VERIFYPE
2017-12-12 17:02:47 2474
原创 php支付宝接口官方SDK简单开发
我用的官方sdk https://docs.open.alipay.com/270/106291/直接aop文件夹放到PHP环境 配置 AopClient.php这个文件 秘钥和公钥搞了一会 这个一定要配置正确//应用IDpublic $appId //私钥值 public $rsaPrivateKey//支付宝公钥public $alipayrsaPublicK
2017-12-07 13:51:59 10018
原创 php 快速输出excel报表
此代码仅供参考 function outputReport(){ if($_GET['start']&&$_GET['end']){ $start = strtotime($_GET['start']); $end = strtotime($_GET['end']); $deals = $GLOBALS["db"]->getAll("select d
2017-11-06 09:07:20 357
原创 PHP平铺水印
$bigImgPath = "logo.png";$logo = "logo2.png";$im = imagecreatefromstring(file_get_contents($bigImgPath));//获取水印源$watermark = imagecreatefromstring(file_get_contents($logo));//获取图、水印 宽高类型list($bg
2017-10-18 09:45:30 1677
(已失效,代码仅供学习)php采集58,赶集网,搜房网,安居客(个人房源)
2016-02-05
jquery 英文教程 jQuery Plugin Development Beginner’s Guide PDF
2011-04-26
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人