摘要: 1.为order by字段建立索引 create index ‘表名_字段名’on 表名(field1,field2); 其他: 查看索引 show index from 表名 2.where 条件最先出现的是要排序更多结果的条件 where a>0 and b0筛选后的结果要少于b<0,此时称最优条件顺序 3.最优条件顺序决定最优索引顺序 阅读全文
posted @ 2015-01-14 17:21 yo胡yo 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 运用curl 设置超时,触发后台脚本执行 例如一些需要长时间等待的任务,如创建数据库,下载网络图片等 $ch = curl_init();//$ch资源可以请求多个连接 curl_setopt($ch, CURLOPT_URL, trim($url)); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CU... 阅读全文
posted @ 2015-01-14 16:37 yo胡yo 阅读(1106) 评论(0) 推荐(0) 编辑
摘要: 1.设置菜单 //2.批量显示菜单项接口 wx.showMenuItems({ menuList: [ 'menuItem:profile', //查看公众号 'menuItem:editTag', //保护类无法调用 'menuItem:share:facebook', //无效 ], success: function ... 阅读全文
posted @ 2015-01-13 10:09 yo胡yo 阅读(886) 评论(2) 推荐(0) 编辑
摘要: http://www.qq210.com/shoutu/android 阅读全文
posted @ 2015-01-12 18:13 yo胡yo 阅读(1409) 评论(0) 推荐(0) 编辑
摘要: 测试地址:http://www.qq210.com/shoutu/android demo地址:http://www.qq210.com/shoutu/android demo效果: 其他: 为了记录执行过程和调试代码,提交日志到服务器并记录日志 js部分 var log_msg = functio 阅读全文
posted @ 2015-01-12 14:24 yo胡yo 阅读(1938) 评论(4) 推荐(0) 编辑
摘要: 微信JS-SDK demo http://demo.open.weixin.qq.com/jssdk/#menu-device 微信JS-SDK 说明文档:http://mp.weixin.qq.com/wiki/7/aaa137b55fb2e0456bf8dd9148dd613f.html dem 阅读全文
posted @ 2015-01-10 22:33 yo胡yo 阅读(3650) 评论(5) 推荐(1) 编辑
摘要: 参考http://segmentfault.com/blog/tony/1190000000395951 把php添加到环境变量 1.我的电脑->属性->高级系统设置->高级->环境变量 2.找到Path变量 3.设置php目录 “;F:\wamp\bin\php\php5.4.12” 4.在sublime text 3上,Tools->Build System... 阅读全文
posted @ 2015-01-09 10:31 yo胡yo 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1.开启虚拟主机 wamp\bin\apache\Apache2.4.4\conf\http.conf L499 Include conf/extra/httpd-vhosts.conf 去掉;2.‪设置虚拟主机 F:\wamp\bin\apache\Apache2.4.4\conf\extra\h... 阅读全文
posted @ 2015-01-09 10:18 yo胡yo 阅读(140) 评论(0) 推荐(0) 编辑
摘要: //连接数据库mysql -h xxx -u root -p;//查看数据库show databases//查看数据表show tables//查看某数据表结构desc xxx表//修改root密码http://www.kuqin.com/database/20080306/4249.htmluse... 阅读全文
posted @ 2015-01-09 10:09 yo胡yo 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 参考http://home.cnblogs.com/group/topic/8550.html 下载安装Windows Live Writer(下载地址:http://download.live.com/writer。) 在Windows Live Writer上安装SyntaxHighlighter代码着色插件 (下载地址:http://sourcecodeplugin.codep... 阅读全文
posted @ 2015-01-09 09:51 yo胡yo 阅读(179) 评论(0) 推荐(0) 编辑