介绍
weixin_43755969
这个作者很懒,什么都没留下…
展开
-
php使用COM组件 office文件(word/excel/ppt)转pdf文件
【代码】php使用COM组件 office文件(word/excel/ppt)转pdf文件。原创 2023-08-30 12:02:42 · 447 阅读 · 2 评论 -
thinkphp6使用php-ffmepg (windows)
windows系统ffmepg的下载与在thinkphp中的应用原创 2023-05-09 18:41:54 · 1099 阅读 · 0 评论 -
thinkphp3 mysql数据库链接端口号非3306不生效问题
解决tp3非链接数据库3306端口不生效问题原创 2022-09-16 14:23:12 · 399 阅读 · 0 评论 -
Windows下注册nginx和php-cgi为系统服务
windows 使用nssm 配置nginx和php服务自启原创 2022-09-16 14:17:43 · 1458 阅读 · 0 评论 -
javascript 判断字符串是否在一个数组中
var str = "a";var arr = ["a", "b", "c", "d"];// 方法1for (var f1 in arr) { if (arr[f1].indexOf(str) > -1) { // return true alert("true") }}//方法2for (var i = 0; i < arr.length; i++) { if (arr[i].indexOf(str) > -1) { // return true }原创 2021-11-23 09:53:42 · 1833 阅读 · 1 评论 -
PHP 将富文本编辑后的内容转义为HTML标签的字符
//htmlspecialchars 将<转义为HTML标签的字符$res['content'] = htmlspecialchars_decode($res['content']);//strip_tags 去掉html标记得到纯字符$res['content'] = strip_tags($res['content'])原创 2021-10-13 18:50:42 · 511 阅读 · 0 评论 -
使用echarts折线图时重新渲染折线图
使用echarts折线图时重新渲染折线图还是原来的数据,不知道为何折线图没有全部更新数据或删除多余的数据直接查看官方文档:chart.setOption(option,notMerge,lazyUpdate)setOption有三个属性,其中notMerge是设置是否合并的,默认是false合并的.设置notMerge为true就可以去全量更新option,设置setOption(option,true)即可...原创 2021-06-16 12:00:44 · 825 阅读 · 0 评论 -
php获取各种时间问题
1.获取上个月第一天及最后一天. echo date('Y-m-01', strtotime('-1 month')); echo "<br/>"; echo date('Y-m-t', strtotime('-1 month')); echo "<br/>";2.获取当月第一天及最后一天. $stime=date('Y-m-01', strtotime(date("Y-m-d"))); echo $stime; echo "<br/...原创 2020-10-27 13:49:37 · 166 阅读 · 0 评论 -
jq 元素克隆
使用jQuery中append() 方法$(document).ready(function(){$(“button”).click(function(){("body").append(("body").append(("body").append((“p:first”).clone(true));});$(“p”...转载 2019-04-03 14:37:22 · 646 阅读 · 0 评论 -
DOM (文档对象模型(Document Object Model))
这是我第一篇博客DOM (文档对象模型(Document Object Model))文档对象模型(Document Object Model,简称DOM),是W3C组织推荐的处理可扩展标志语言的标准编程接口。在网页上,组织页面(或文档)的对象被组织在一个树形结构中,用来表示文档中对象的标准模型就称为DOM。Document Object Model的历史可以追溯至1990年代后期微软与Net...转载 2019-04-03 09:15:40 · 287 阅读 · 0 评论
分享