上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 一、Class 'think\Image' not found composer require topthink/think-image 装上了扩展控制器头部加了 use think\Image然后\think\image::open($imgSrc);提示Class 'think\Image' 阅读全文
posted @ 2020-07-29 11:47 成文的博客 阅读(1292) 评论(0) 推荐(1) 编辑
摘要: /** * @param $article文章详情 * @param int $count记录数 * tp须引入cookie类 */ function addHistory($article,$count=5) { if(!Cookie::has('history')){ Cookie::set(' 阅读全文
posted @ 2020-07-08 15:53 成文的博客 阅读(393) 评论(0) 推荐(0) 编辑
摘要: alert(dateFormat('2020-07-08 11:32:44')); function dateFormat(d1) { var dateEnd = new Date();//获取当前时间 var dateBegin = new Date(d1.replace(/-/g, "/")); 阅读全文
posted @ 2020-07-08 15:38 成文的博客 阅读(336) 评论(0) 推荐(0) 编辑
摘要: <input type="text" list="note" autocomplete="off"> <datalist id="note"> <option value="小米"> <option value="百度"> <option value="京东"> <option value="腾讯" 阅读全文
posted @ 2020-07-08 15:04 成文的博客 阅读(964) 评论(0) 推荐(0) 编辑
摘要: <?php //发送手机验证码 function smsCode() { //dump($this->request->post()); //请求方式验证 /*if (!$this->request->isAjax()) { $this->error('请求异常'); }*/ $mobile = $ 阅读全文
posted @ 2020-07-02 17:37 成文的博客 阅读(247) 评论(0) 推荐(0) 编辑
摘要: //生成唯一订单号 function create_trade_no($prefix='dd') { return $prefix . date('YmdHis', time()) . substr(microtime(), 2, 6) . sprintf('%03d', rand(0, 999)) 阅读全文
posted @ 2020-07-02 17:28 成文的博客 阅读(3663) 评论(0) 推荐(0) 编辑
摘要: <?php /** * 实现中文字串截取无乱码的方法. */ function getSubstr($string, $start, $length) { if (mb_strlen($string, 'utf-8') > $length) { $str = mb_substr($string, $ 阅读全文
posted @ 2020-07-02 16:57 成文的博客 阅读(402) 评论(0) 推荐(0) 编辑
摘要: alert(formatNum(10000000.87)); /** * @param n 输入数字 * @param is_int 是否只显示整数 * @returns {string} */ function formatNum(n,is_int=true) { //转化成字符串 var str 阅读全文
posted @ 2020-07-02 16:45 成文的博客 阅读(1798) 评论(0) 推荐(0) 编辑
摘要: PHP的无限极分类 一、使用数据表 添加from字段 id name parent_id from 1 中国 0 0 2 广东 1 0,1 3 深圳 2 0,1,2 4 龙华 3 0,1,2,3 5 湖南 1 0,1 6 长沙 5 0,1,5 7 岳麓 6 0,1,5,6 8 安微 1 0,1 9 阅读全文
posted @ 2020-07-01 23:19 成文的博客 阅读(253) 评论(0) 推荐(0) 编辑
摘要: InnoDB存储引擎的行级锁 InnoDB存储引擎和MyISAM的其中有两个很重要的区别:一个是事务,一个就是锁机制不同。事务之前有介绍,有问题的去补课;锁方面的不同是InnoDB引擎既有表锁又有行锁,表锁的应用和MyISAM表锁用法一样,行锁只有通过有索引的字段作为条件检索的时候,才会使用行级锁, 阅读全文
posted @ 2020-07-01 22:51 成文的博客 阅读(175) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页