Home  >  Article  >  php教程  >  PHP反射类之妙用

PHP反射类之妙用

WBOY
WBOYOriginal
2016-06-06 19:47:19878browse

//PHP Reflection Class is to create a instance of a class which name isspecified ?php class abc { private $p1; private $p2; function __construct($array) { $this-p1 = $array [0]; $this-p2 = $array [1]; } function getP1() { return $this-p1;

//PHP Reflection Class is to create a instance of a class which name is specified

class abc {
 private $p1;
 private $p2;
 
 function __construct($array) {
  $this->p1 = $array [0];
  $this->p2 = $array [1];
 }
 
 function getP1() {
  return $this->p1;
 }
 
 function getP2() {
  return $this->p2;
 }
}

$arr = array (0 => 'p1', 1 => 'p2' );
$class = new ReflectionClass ( 'abc' );
$aObj = $class->newInstance ( $arr );
echo $aObj->getP1 ();
echo $aObj->getP2 ();
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn