摘要: container = $arr; } // 某键是否存在 返回布尔值 public function offsetExists($offset) { var_dump(__METHOD__); return isset($this->container[$offset]); } // 获取键对应的值 返回值mi... 阅读全文
posted @ 2019-02-21 22:01 白開水 阅读(202) 评论(0) 推荐(0)
摘要: 前言:SPL是用于解决典型问题(standard problems)的一组接口与类的集合。 <?php /** * Class MyIterator * 在 PHP 中,通常情况下遍历数组使用 foreach 来遍历。 * Iterator 接口,只要实现了这个接口,对象就可以通过 foreach 阅读全文
posted @ 2019-02-21 21:39 白開水 阅读(255) 评论(0) 推荐(0)