-
yuanzhe查看全部
-
多处 变更类名、参数时查看全部
-
调用类方法- 替换直接new 对象查看全部
-
调用 不存在属性 时查看全部
-
return $this;查看全部
-
迭代器模式查看全部
-
装饰器设计模式查看全部
-
原型模式查看全部
-
观察者模式查看全部
-
设配器查看全部
-
$array[key] = $value;查看全部
-
1、访问不存在的属性,__set()和__get() 2、调用不存在的方法 __call()和__callstatic() 3、对象作为字符串使用,__toString() 4、对象作为方法使用,__invoke()查看全部
-
spl_autoload_register(); //允许多个,不冲突 function __autoload($class){ require __DIR__.'/'.$class.'.php'; }查看全部
-
123查看全部
-
$stack = new SplStack()//栈 $queue = new SplQueue()//队列 $heap = new SplMinHeap()//堆 $array =new SplFixedArray(10)//固定长度的数组查看全部
举报
0/150
提交
取消