首页 > 开发 > PHP > 正文

PHP中预定义的6种接口介绍

2024-05-04 23:35:04
字体:
来源:转载
供稿:网友

这篇文章主要介绍了PHP中预定义的6种接口介绍,本文讲解了Traversable、Iterator、IteratorAggregate、ArrayAccess、Serializable、Closure,需要的朋友可以参考下

PHP预定义了6个接口介绍如下:

1.Traversable遍历接口

呵呵!其实它不是一个在PHP中可以使用的接口,内部类才可使用,它有一个用途就是检测一个类是否可以遍历。

 

 
  1. if($class instanceof Traversable) { 
  2. //foreach 

2.Iterator迭代器接口

接口摘要:

 

 
  1. Iterator extends Traversable  
  2. {  
  3. //返回当前索引游标指向的元素  
  4. abstract public mixed current(void)  
  5. //返回当前索引游标指向的元素的键名  
  6. abstract public scalar key(void)  
  7. //移动当前索引游标指向下一元素  
  8. abstract public void next(void)  
  9. //重置索引游标的指向第一个元素  
  10. abstract public void rewind(void)  
  11. //判断当前索引游标指向的是否是一个元素,常常在调用 rewind()或 next()使用  
  12. abstract public boolean valid(void)  

以上可以让一个类实现一个基本的迭代功能,如下可以看到迭代的调用顺序:

 

 
  1. class myIterator implements Iterator { 
  2. private $position = 0 ; 
  3. private $array = array
  4. "firstelement" , 
  5. "secondelement" , 
  6. "lastelement" , 
  7. ); 
  8.  
  9. public function __construct () { 
  10. $this -> position = 0 ; 
  11.  
  12. function rewind () { 
  13. var_dump ( __METHOD__ ); 
  14. $this -> position = 0 ; 
  15.  
  16. function current () { 
  17. var_dump ( __METHOD__ ); 
  18. return $this -> array [ $this -> position ]; 
  19.  
  20. function key () { 
  21. var_dump ( __METHOD__ ); 
  22. return $this -> position ; 
  23.  
  24. function next () { 
  25. var_dump ( __METHOD__ ); 
  26. ++ $this -> position ; 
  27.  
  28. function valid () { 
  29. var_dump ( __METHOD__ ); 
  30. return isset( $this -> array [ $this -> position ]); 
  31.  
  32. $it = new myIterator ; 
  33.  
  34. foreach$it as $key => $value ) { 
  35. var_dump ( $key , $value ); 
  36. echo "/n" ; 

3.IteratorAggregate聚合式迭代器接口

接口摘要:

 

 
  1. IteratorAggregate extends Traversable { 
  2.  
  3. //获取外部迭代器 
  4. abstract public Traversable getIterator ( void ) 
  5. }  

getIterator是一个Iterator或Traversable接口的类的一个实例。如下获取外部迭代器实现迭代访问。

 

 
  1. class myData implements IteratorAggregate { 
  2. public $property1 = "Public property one" ; 
  3. public $property2 = "Public property two" ; 
  4. public $property3 = "Public property three" ; 
  5.  
  6. public function __construct () { 
  7. $this -> property4 = "last property" ; 
  8.  
  9.  
  10. public function getIterator () { 
  11. return new ArrayIterator ( $this ); 
  12.  
  13. $obj = new myData ; 
  14.  
  15. foreach$obj as $key => $value ) { 
  16. var_dump ( $key , $value ); 
  17. echo "/n" ; 

4.ArrayAccess数组式访问接口

接口摘要:

 

 
  1. ArrayAccess { 
  2. /* 方法 */ 
  3. abstract public boolean offsetExists ( mixed $offset ) //检查偏移位置是否存在 
  4. abstract public mixed offsetGet ( mixed $offset ) //获取一个偏移位置的值 
  5. abstract public void offsetSet ( mixed $offset , mixed $value ) //设置一个偏移位置的值 
  6. abstract public void offsetUnset ( mixed $offset ) //复位一个偏移位置的值 

如下可像访问数组一样访问对象:

 

 
  1. class obj implements arrayaccess { 
  2. private $container = array(); 
  3. public function __construct () { 
  4. $this -> container = array
  5. "one" => 1 , 
  6. "two" => 2 , 
  7. "three" => 3 , 
  8. ); 
  9. public function offsetSet ( $offset , $value ) { 
  10. if ( is_null ( $offset )) { 
  11. $this -> container [] = $value ; 
  12. else { 
  13. $this -> container [ $offset ] = $value ; 
  14. public function offsetExists ( $offset ) { 
  15. return isset( $this -> container [ $offset ]); 
  16. public function offsetUnset ( $offset ) { 
  17. unset( $this -> container [ $offset ]); 
  18. public function offsetGet ( $offset ) { 
  19. return isset( $this -> container [ $offset ]) ? $this -> container [ $offset ] : null ; 
  20.  
  21. $obj = new obj ; 
  22.  
  23. var_dump (isset( $obj [ "two" ])); 
  24. var_dump ( $obj [ "two" ]); 
  25. unset( $obj [ "two" ]); 
  26. var_dump (isset( $obj [ "two" ])); 
  27. $obj [ "two" ] = "A value" ; 
  28. var_dump ( $obj [ "two" ]); 
  29. $obj [] = 'Append 1' ; 
  30. $obj [] = 'Append 2' ; 
  31. $obj [] = 'Append 3' ; 
  32. print_r ( $obj ); 

5.Serializable序列化接口

接口摘要:

 

 
  1. Serializable { 
  2.  
  3. /* 方法 */ 
  4. abstract public string serialize ( void ) //对象的字符串表示 
  5. abstract public mixed unserialize ( string $serialized ) // 构造对象 

实现该接口的类不再支持__sleep()和__wakeup()。使用很简单,只要序列化对象时serialize方法会被调用,当反序列化时,unserialize方法被调用。

 

 
  1. class obj implements Serializable { 
  2. private $data ; 
  3. public function __construct () { 
  4. $this -> data = "My private data" ; 
  5. public function serialize () { 
  6. return serialize ( $this -> data ); 
  7. public function unserialize ( $data ) { 
  8. $this -> data = unserialize ( $data ); 
  9. public function getData () { 
  10. return $this -> data ; 
  11.  
  12. $obj = new obj ; 
  13. $ser = serialize ( $obj ); 
  14. print_r($ser); 
  15. $newobj = unserialize ( $ser ); 
  16. print_r($newobj); 

6.Closure

接口摘要:

 

 
  1. Closure { 
  2. /* 方法 */ 
  3. __construct ( void ) //用于禁止实例化的构造函数 
  4. public static Closure bind ( Closure $closure , object $newthis [, mixed $newscope = 'static' ] ) //复制一个闭包,绑定指定的$this对象和类作用域。 
  5. public Closure bindTo ( object $newthis [, mixed $newscope = 'static' ] ) //复制当前闭包对象,绑定指定的$this对象和类作用域。 

 

 
  1. class A { 
  2. private static $sfoo = 1 ; 
  3. private $ifoo = 2 ; 
  4. $cl1 = static function() { 
  5. return A :: $sfoo ; 
  6. }; 
  7. $cl2 = function() { 
  8. return $this -> ifoo ; 
  9. }; 
  10.  
  11. $bcl1 = Closure :: bind ( $cl1 , null , 'A' ); 
  12. $bcl2 = Closure :: bind ( $cl2 , new A (), 'A' ); 
  13. echo $bcl1 (), "/n" ; 
  14. echo $bcl2 (), "/n" ; 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表