摘要:
PHP递归函数 局部变量释放问题 切记递归函数里面的局部变量不会释放的 只有等完全结束才会释放 所以一般都要unset手动释放 阅读全文
摘要:
javascript html2canvas手机端生成截图问题 html2canvas(document.querySelector("#capture"),{scale:3}).then(canvas => { $('#haibaopic').attr('src',canvas.toDataURL 阅读全文
摘要:
pixijs 显示帧速率 var g_Time=0; app.ticker.add((delta) => { var timeNow = (new Date()).getTime(); var timeDiff = timeNow - g_Time; g_Time = timeNow; var zh 阅读全文
摘要:
svg代码嵌入秀米的方法 1 先写个占位文字 标识一下 2 复制粘贴到推文 F12打开开发者工具找到 代码占位这个代码片段 3 F2替换下 SVG代码 4 保存就OK了 阅读全文
摘要:
background-image:linear-gradient(black 90%, transparent 100%); 阅读全文
摘要:
mysql如何查询下一条数据 select * from table_a where id = (select min(id) from table_a where id > {$id}); 阅读全文
摘要:
mysql select保留小数点的方法 select format(1,2) from moban_oauthinfo 就有2位小数点了 阅读全文
摘要:
mysql大数据分页优化方法 SELECT * FROM product WHERE ID > =(select id from product limit 866613, 1) limit 20 主要用了覆盖索引 来获取id 阅读全文
摘要:
mysql临时表代替in的写法 $sql = "create temporary table tmp(id int(4) primary key)"; $this->commonexecute($sql); $sql = "insert into tmp values (23), (433)"; $ 阅读全文
摘要:
mysql临时表进行批量更新 $sql = "create temporary table tmp(id int(4) primary key,dr varchar(50))"; $this->commonexecute($sql); $sql = "insert into tmp values ( 阅读全文