이 글에서는 PHP에서 미리 정의된 6가지 인터페이스를 주로 소개하고 Traversable, Iterator, IteratorAggregate, ArrayAccess, Serialized, Closure에 대해 자세히 설명합니다. 그것이 모두에게 도움이 되기를 바랍니다.
PHP 사전 정의된 6개의 인터페이스는 다음과 같이 소개됩니다:
1.Traversable traversal 인터페이스
하하! 실제로 이는 PHP에서 사용할 수 있는 인터페이스가 아니며 내부 클래스만 사용할 수 있습니다. 그 용도 중 하나는 클래스를 탐색할 수 있는지 여부를 감지하는 것입니다.
if($class instanceof Traversable) { //foreach }
2. 반복자 인터페이스
인터페이스 요약:
Iterator extends Traversable { //返回当前索引游标指向的元素 abstract public mixed current(void) //返回当前索引游标指向的元素的键名 abstract public scalar key(void) //移动当前索引游标指向下一元素 abstract public void next(void) //重置索引游标的指向第一个元素 abstract public void rewind(void) //判断当前索引游标指向的是否是一个元素,常常在调用 rewind()或 next()使用 abstract public boolean valid(void) }
위를 통해 클래스는 다음과 같이 반복 호출 순서를 볼 수 있습니다.
class myIterator implements Iterator { private $position = 0 ; private $array = array( "firstelement" , "secondelement" , "lastelement" , ); public function __construct () { $this -> position = 0 ; } function rewind () { var_dump ( __METHOD__ ); $this -> position = 0 ; } function current () { var_dump ( __METHOD__ ); return $this -> array [ $this -> position ]; } function key () { var_dump ( __METHOD__ ); return $this -> position ; } function next () { var_dump ( __METHOD__ ); ++ $this -> position ; } function valid () { var_dump ( __METHOD__ ); return isset( $this -> array [ $this -> position ]); } } $it = new myIterator ; foreach( $it as $key => $value ) { var_dump ( $key , $value ); echo "\n" ; }
IteratorAggregate extends Traversable { //获取外部迭代器 abstract public Traversable getIterator ( void ) }
class myData implements IteratorAggregate { public $property1 = "Public property one" ; public $property2 = "Public property two" ; public $property3 = "Public property three" ; public function __construct () { $this -> property4 = "last property" ; } public function getIterator () { return new ArrayIterator ( $this ); } } $obj = new myData ; foreach( $obj as $key => $value ) { var_dump ( $key , $value ); echo "\n" ; }
ArrayAccess { /* 方法 */ abstract public boolean offsetExists ( mixed $offset ) //检查偏移位置是否存在 abstract public mixed offsetGet ( mixed $offset ) //获取一个偏移位置的值 abstract public void offsetSet ( mixed $offset , mixed $value ) //设置一个偏移位置的值 abstract public void offsetUnset ( mixed $offset ) //复位一个偏移位置的值 }
rrre 에에
5 .직렬화 가능한 직렬화 인터페이스
인터페이스 요약:class obj implements arrayaccess { private $container = array(); public function __construct () { $this -> container = array( "one" => 1 , "two" => 2 , "three" => 3 , ); } public function offsetSet ( $offset , $value ) { if ( is_null ( $offset )) { $this -> container [] = $value ; } else { $this -> container [ $offset ] = $value ; } } public function offsetExists ( $offset ) { return isset( $this -> container [ $offset ]); } public function offsetUnset ( $offset ) { unset( $this -> container [ $offset ]); } public function offsetGet ( $offset ) { return isset( $this -> container [ $offset ]) ? $this -> container [ $offset ] : null ; } } $obj = new obj ; var_dump (isset( $obj [ "two" ])); var_dump ( $obj [ "two" ]); unset( $obj [ "two" ]); var_dump (isset( $obj [ "two" ])); $obj [ "two" ] = "A value" ; var_dump ( $obj [ "two" ]); $obj [] = 'Append 1' ; $obj [] = 'Append 2' ; $obj [] = 'Append 3' ; print_r ( $obj );
Serializable { /* 方法 */ abstract public string serialize ( void ) //对象的字符串表示 abstract public mixed unserialize ( string $serialized ) // 构造对象 }
인터페이스 요약:
class obj implements Serializable { private $data ; public function __construct () { $this -> data = "My private data" ; } public function serialize () { return serialize ( $this -> data ); } public function unserialize ( $data ) { $this -> data = unserialize ( $data ); } public function getData () { return $this -> data ; } } $obj = new obj ; $ser = serialize ( $obj ); print_r($ser); $newobj = unserialize ( $ser ); print_r($newobj);
Closure { /* 方法 */ __construct ( void ) //用于禁止实例化的构造函数 public static Closure bind ( Closure $closure , object $newthis [, mixed $newscope = 'static' ] ) //复制一个闭包,绑定指定的$this对象和类作用域。 public Closure bindTo ( object $newthis [, mixed $newscope = 'static' ] ) //复制当前闭包对象,绑定指定的$this对象和类作用域。 }
관련 권장 사항:
PHP 보안 토크 php 인터페이스 보안 php 보안 감지 php.ini 보안 구성
PHP 인터페이스 및 참조 인터페이스 자세한 설명_PHP 튜토리얼
위 내용은 PHP에서 사전 정의된 6가지 인터페이스 분석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!