2022年9月8日

jQuery复制到剪贴板clipboard.js简单用法

摘要: 复制到剪贴板 <!-- 引入js文件 --> <script src="https://cdn.bootcdn.net/ajax/libs/clipboard.js/2.0.8/clipboard.min.js"></script> <!-- 给dom添加class/data-clipboard-t 阅读全文

posted @ 2022-09-08 17:21 小馬過河﹎ 阅读(387) 评论(0) 推荐(0)

ThinkPHP3加固I()函数过滤单引号

摘要: function.php function htmlentities_custom($str) { return htmlentities($str, ENT_QUOTES); } config.php return [ 'DEFAULT_FILTER' => 'htmlentities_custo 阅读全文

posted @ 2022-09-08 17:19 小馬過河﹎ 阅读(87) 评论(0) 推荐(0)

vue-hisory项目在nginx下的伪静态配置

摘要: location / { try_files $uri $uri/ /index.html last; index index.html; } add_header 'Access-Control-Allow-Origin' '*' always; #允许来自所有的访问地址 add_header ' 阅读全文

posted @ 2022-09-08 17:16 小馬過河﹎ 阅读(999) 评论(0) 推荐(0)

ThinkPHP3.2.5 GIF.class.php for php7.4

摘要: PHP7.4不再支持使用大括号访问数组以及字符串的偏移 PHP7.4不再支持数组{}写法,统一为数组[] 路径:/ThinkPHP/Library/Think/Image/Driver/GIF.class.php <?php // + // | TOPThink [ WE CAN DO IT JUS 阅读全文

posted @ 2022-09-08 17:14 小馬過河﹎ 阅读(81) 评论(0) 推荐(0)

vue使用layui上传

摘要: 问题在于vue渲染多个虚拟dom无法触发layui.upload.render()方法,解决方案为:点击上传按钮的容器时删除dom并重新渲染。 核心代码 <div class="layui-form-item"> <div class="layui-form-label">图片附件</div> <d 阅读全文

posted @ 2022-09-08 17:12 小馬過河﹎ 阅读(276) 评论(0) 推荐(0)

使用Array.reduce对数组去重

摘要: JavaScript uniqArray = arr => arr.reduce((acc, val) => { acc.indexOf(val) == -1 && acc.push(val) return acc }, []) Examples uniqArray([1, 2, 2, 3]) // 阅读全文

posted @ 2022-09-08 17:11 小馬過河﹎ 阅读(28) 评论(0) 推荐(0)

php通过文件路径获取文件名/文件标题/文件后缀名/文件大小

摘要: ### 通过路径获取文件名 ```php function getFileName($filePath) { return \mb_substr($filePath, \mb_strrpos($filePath, '/') + 1); } // V2 function getFileName($fi 阅读全文

posted @ 2022-09-08 17:06 小馬過河﹎ 阅读(379) 评论(0) 推荐(0)

字体文件转base64

摘要: 链接 https://transfonter.org/ 配置 阅读全文

posted @ 2022-09-08 17:04 小馬過河﹎ 阅读(60) 评论(0) 推荐(0)

ThinkPHP3图片水印文字居中

该文被密码保护。 阅读全文

posted @ 2022-09-08 17:01 小馬過河﹎ 阅读(0) 评论(0) 推荐(0)

PHP导出Excel类 Excel.class.php

摘要: <?php namespace Common\Cls; /** * 生成excel文件操作 * * @author wesley wu * @date 2013.12.9 */ class Excel { private $limit = 10000; public function downloa 阅读全文

posted @ 2022-09-08 17:00 小馬過河﹎ 阅读(56) 评论(0) 推荐(0)

导航