如果想让对象使用起来像一个 PHP 数组,那么我们需要实现 ArrayAccess 接口: interface ArrayAccess boolean offsetExists($index) mixed offsetGet($index) void offsetSet($index, $newv... Read More
在网上看到了一篇文章,是关于PHP的GC(Garbage Collector)的,感觉不错,所以…拿来主义~~~ 原文链接:http://blog.zol.com.cn/1616/article_1615397.html 原文: 每一种计算机语言都有自己的自动垃圾回收机制,让程序员不必过分关心程序内... Read More