Heim  >  Artikel  >  php教程  >  PHP反射类之妙用

PHP反射类之妙用

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

//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 ();
?>

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn