上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 97 下一页
摘要: PHP设计模式依我之见 虽然有24大设计模式 简单看了下 我并不喜欢 因为太难用了 我觉得只要满足面向对象原则就是一个好的设计模式 第一个最重要的原则就是单一职责原则 每个类都有自己的职责 这个职责当然要根据需求来划分 当然一般分的细一点比较好 以后方便维护 比方说用户支付商品 有微信支付 支付宝支 阅读全文
posted @ 2021-03-09 13:20 newmiracle宇宙 阅读(48) 评论(0) 推荐(0) 编辑
摘要: javascript检测内存泄漏的方法 这个线条是上升状态的 明显就是内存 内存满了 浏览器就是崩溃的时候 如果要知道哪个代码引擎的 只能用排除法 阅读全文
posted @ 2021-03-08 14:09 newmiracle宇宙 阅读(391) 评论(0) 推荐(0) 编辑
摘要: php io多路复用 1 首先说明 io多路复用只是为了在服务端上更方便更快速的读取数据 五种网络IO模型目录 前段时间,我有个朋友因为拿快递和家里闹别扭了,今天我就借这事来讲讲五大网络模型 阻塞IO模型第一天: 刘:今天因为拿快递被我妈骂了一顿 我:说来听听 刘:我本来在家里打扫家务,后来我妈让我 阅读全文
posted @ 2021-03-06 08:54 newmiracle宇宙 阅读(262) 评论(0) 推荐(0) 编辑
摘要: css3 pointer-events:auto;详解 <style type="text/css"> #div_grandfather{ height : 250px; background: orange; width:300px; border:1px solid; pointer-event 阅读全文
posted @ 2021-03-04 14:20 newmiracle宇宙 阅读(2658) 评论(0) 推荐(0) 编辑
摘要: svg双重动画的方法 <p> <svg> <g> <rect id="Rectangle-1" fill="#3C81C1" sketch:type="MSShapeGroup" x="0" y="0" width="100" height="125"> <animatetransform attr 阅读全文
posted @ 2021-03-03 12:22 newmiracle宇宙 阅读(589) 评论(0) 推荐(0) 编辑
摘要: PHP static::的用法 <?php class a{ static protected $test="class a"; public function static_test(){ echo static::$test; // Results class b echo self::$tes 阅读全文
posted @ 2021-03-02 10:39 newmiracle宇宙 阅读(456) 评论(0) 推荐(0) 编辑
摘要: PHP多进程开发1 <?php $pid = pcntl_fork(); //父进程和子进程都会执行下面代码 if ($pid == -1) { //错误处理:创建子进程失败时返回-1. die('could not fork'); } else if ($pid) { echo getmypid( 阅读全文
posted @ 2021-03-02 09:46 newmiracle宇宙 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 在 /home 目录下的所有文件中查找包含 test 字符串的文件。 grep -r -e "test" /home/ 阅读全文
posted @ 2021-03-01 09:43 newmiracle宇宙 阅读(431) 评论(0) 推荐(0) 编辑
摘要: webman 关于数据库性能 webman链接数据库用的是单例模式 就是用户链接一次 第二次就不需要链接 多个用户就是多个链接1次 public function __construct($pdo, $database = '', $tablePrefix = '', array $config = 阅读全文
posted @ 2021-02-27 20:19 newmiracle宇宙 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 虚拟机centos安装方法 http://mirrors.nju.edu.cn/centos/7.9.2009/isos/x86_64/ 要装dvd版本 64bit就行了 阅读全文
posted @ 2021-02-26 12:40 newmiracle宇宙 阅读(57) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 97 下一页