摘要:
df -Th resize2fs/dev/vda1 growpart /dev/vda 1 阅读全文
摘要:
<!--引入微信js--> <script type="text/javascript" src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script> $(document).ready(function () { var imgs = 阅读全文
摘要:
rotateBase64Img(dataStr, -90);//-90向左旋转90度,90向右旋转90度。 function rotateBase64Img(src, edg) { var canvas = document.createElement("canvas"); var ctx = ca 阅读全文
摘要:
鼠标移入移出冒泡事件解决 Jquery mouseenter和mouseleave 最近做了1个功能,鼠标移出div时该div隐藏,但是鼠标移入该div子元素时,该div也隐藏了。 开始是使用的jquery的mouseover和mouseout事件,但是问题来了,我要的是鼠标移出ul的时候才触发mo 阅读全文
摘要:
//网签生成图片 if (empty($data['signature'])) { return $result = ['code' => 0, 'msg' => '请签名后再提交!']; } //将图片流写入图片文件 $file_path = ROOT_PATH.'public_html/uplo 阅读全文
摘要:
$list = [ [ 'id' => 1, 'name' => '刘德华', 'old' => 57, 'sex' => '男' ], [ 'id' => 2, 'name' => '梁朝伟', 'old' => 55, 'sex' => '男' ], [ 'id' => 3, 'name' => 阅读全文
摘要:
转自:https://blog.csdn.net/web_csdn_share/article/details/79243308 下面是我整理的常用 Git 命令清单。几个专用名词的译名如下。 Workspace:工作区 Index / Stage:暂存区 Repository:仓库区(或本地仓库) 阅读全文
摘要:
1 //使用前确保已经引入exif.js。下载地址:http://code.ciaoca.com/javascript/exif-js/ 2 var file=document.getElementById('imagefile').files[0];//获取文件流 3 correcctImageOrientation(file);//调用方法,将图片修正。 4 // 纠正图片旋转方向 5 fun 阅读全文
摘要:
随笔 - 52 文章 - 0 评论 - 36 随笔 - 52 文章 - 0 评论 - 36 随笔 - 52 文章 - 0 评论 - 36 随笔 - 52 文章 - 0 评论 - 36 MySQL中char、varchar和text的设计 char、varchar、text常识: 1、char(n)和 阅读全文
摘要:
$sql = "SHOW TABLES LIKE '%字符串%'"; 阅读全文