上一页 1 ··· 76 77 78 79 80 81 82 83 84 ··· 97 下一页
摘要: mysql用find_in_set代替like搜索提高性能 <pre>SELECT * from mobantestinfo1 where find_in_set('33',info2); </pre> ps 常用于 tag搜索 阅读全文
posted @ 2019-11-14 12:40 newmiracle宇宙 阅读(1215) 评论(0) 推荐(0) 编辑
摘要: php ffmpeg视频和序列帧转化 <pre>$cmd=shell_exec("ffmpeg -i ".__DIR__ . "/shipin1.mp4 -r 25 -q:v 2 ".__DIR__ . "/testxulie/%03d.jpg"); print_r($cmd); exit(); $ 阅读全文
posted @ 2019-11-14 12:39 newmiracle宇宙 阅读(799) 评论(0) 推荐(0) 编辑
摘要: sublime3中运行python文件 tools->build system->new build stystem 粘贴下面代码{"cmd":["python.exe", "-u", "$file"],"path":"C:/Users/csq/AppData/Local/Programs/Pyth 阅读全文
posted @ 2019-11-14 12:38 newmiracle宇宙 阅读(240) 评论(0) 推荐(0) 编辑
摘要: jquery mobiscroll移动端日期选择控件(无乱码) <pre><!DOCTYPE html><html lang="en"><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, i 阅读全文
posted @ 2019-11-14 12:37 newmiracle宇宙 阅读(507) 评论(0) 推荐(0) 编辑
摘要: php+mysql 实现无限极分类<pre>id name pid path 1 电脑 0 0 2 手机 0 0 3 笔记本 1 0-1 4 超级本 3 0-1-3 5 游戏本 3 0-1-3</pre> 这种方式,假设我们要查询电脑下的所有后代分类,只需要一条sql语句: <pre>select 阅读全文
posted @ 2019-11-14 12:36 newmiracle宇宙 阅读(424) 评论(0) 推荐(0) 编辑
摘要: javascript canvas 生成图片的方法 先生成base64格式的图片 然后ajax传到后台 写入服务器文件夹即可<pre><!DOCTYPE HTML><html> <body> <canvas id="myCanvas"> your browser does not support t 阅读全文
posted @ 2019-11-14 12:36 newmiracle宇宙 阅读(604) 评论(0) 推荐(0) 编辑
摘要: php 开启微信公众号开发者模式<pre><?php/** * wechat php test */header('Content-type:text');//define your token//定义TOKEN密钥define("TOKEN", "weixin");//实例化微信对象$wechat 阅读全文
posted @ 2019-11-14 12:35 newmiracle宇宙 阅读(454) 评论(0) 推荐(0) 编辑
摘要: PHP对象继承<?php class foo{ public function printItem($string) { echo 'Foo: ' . $string . PHP_EOL; } public function printPHP() { echo 'PHP is great.' . P 阅读全文
posted @ 2019-11-14 12:34 newmiracle宇宙 阅读(135) 评论(0) 推荐(0) 编辑
摘要: jquery layui的巨坑 layui 模块不能写在ajax里 因为 layui只能执行一次 第二次会没效果 再执行需要刷新页面再执行 阅读全文
posted @ 2019-11-14 12:33 newmiracle宇宙 阅读(650) 评论(0) 推荐(0) 编辑
摘要: phpexcel导出数字带E的解决方法 excel之所以带E 是因为按照数字格式来显示了(数字过长的时候) 数字左边或者右边加空格就变成字符串了 那么excel就会按照字符串格式来显示了 就不会带E了 阅读全文
posted @ 2019-11-14 12:33 newmiracle宇宙 阅读(1549) 评论(0) 推荐(0) 编辑
上一页 1 ··· 76 77 78 79 80 81 82 83 84 ··· 97 下一页