上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 97 下一页
摘要: 使用array_push压入1000000个元素<pre><?php$starttime = get_microtime();$arr = array();for($i=0; $i<1000000; $i++){ array_push($arr, $i);}$endtime = get_microt 阅读全文
posted @ 2019-11-17 08:29 newmiracle宇宙 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 传统写法<pre>function timer () { echo "hello world";}Swoole\Timer::tick(2000, 'timer');</pre>闭包写法<pre>Swoole\Timer::tick(2000, function () { echo "hello w 阅读全文
posted @ 2019-11-17 08:28 newmiracle宇宙 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 生成个性二维码方法 先设置容错率 当然设置最高啦 这样才能做出好好看的二维码目前容错率可分为L,M,Q,H四个等级,分别表示7%,15%,25%,30% 然后把二维码黑色变成图片。。。。 白色的地方尽量改的地方少点 下面就不多说了 阅读全文
posted @ 2019-11-17 08:28 newmiracle宇宙 阅读(281) 评论(0) 推荐(0) 编辑
摘要: PHP stdclass转array的方法 <pre><?php$a = new stdClass();$a->id = '11 ';$a->username = 'me';print_r($a);$b=object2array($a);print_r($b);function object2arr 阅读全文
posted @ 2019-11-17 08:27 newmiracle宇宙 阅读(1144) 评论(0) 推荐(0) 编辑
摘要: mt_rand() 比rand() 快四倍使用方法 <?php//输出35echo(mt_rand(10,100));?> 阅读全文
posted @ 2019-11-17 08:27 newmiracle宇宙 阅读(142) 评论(0) 推荐(0) 编辑
摘要: nginx location笔记= 开头表示精确匹配^~ 开头表示uri以某个常规字符串开头,理解为匹配 url路径即可。nginx不对url做编码,因此请求为/static/20%/aa,可以被规则^~ /static/ /aa匹配到(注意是空格)。~ 开头表示区分大小写的正则匹配~* 开头表示不 阅读全文
posted @ 2019-11-17 08:18 newmiracle宇宙 阅读(179) 评论(0) 推荐(1) 编辑
摘要: navicat for Mysql查询数据不能直接修改 原来的sql语句: <pre> select id,name,title from table where id = 5;</pre> 修改为: <pre> select * from table where id = 5;</pre> 然后下 阅读全文
posted @ 2019-11-17 08:17 newmiracle宇宙 阅读(2458) 评论(0) 推荐(0) 编辑
摘要: nginx服务器图片防盗链的方法<pre> location ~* \.(gif|jpg|png|jpeg)$ { expires 30d; valid_referers *.shuchengxian.com www.shuchengxian.com; if ($invalid_referer) { 阅读全文
posted @ 2019-11-17 08:17 newmiracle宇宙 阅读(212) 评论(0) 推荐(0) 编辑
摘要: html5手机端播放音效不卡的方法线下载http://wxserver.knowway.cn/solosea/js/audioEngine.js 这个是性能不错 然后直接播放音效就可以了 audioEngine.playEffect('/solosea1/music/laidian.mp3', fa 阅读全文
posted @ 2019-11-17 08:16 newmiracle宇宙 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 手机端滑动效果简单做法把高度设死 然后overflow-y: scroll; 就可以了 可以用手滑动了 不过他的优先级很低 会被body或者swiper覆盖 所以一般这种情况 就只能取消body和swiper的触摸机制ps:给body高度设置100% 也行 阅读全文
posted @ 2019-11-17 08:16 newmiracle宇宙 阅读(213) 评论(0) 推荐(0) 编辑
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 97 下一页