Get class constructor's parameter information : Reflection Constructor : Class PHP Source Code


PHP Source Code » Class » Reflection Constructor »

 

Get class constructor's parameter information



<?php
class Person {
    private $name;    
    private $age;    
    private $id;    

    function __construct$name, $age ) {
        $this->name = $name;
        $this->age = $age;
    }

    function setId$id ) {
        $this->id = $id;
    }
    
    function getId(){
        echo "get id method";    
    }
    
    function __clone() {
        $this->id = 0;
    }
}


class PersonHelper{
    function __construct&$Person ) {
    }
}

$prod_class = new ReflectionClassPersonHelper );
$method = $prod_class->getMethod"__construct" );
$params = $method->getParameters();

foreach $params as $param ) {
  print argData$param );
}

function argDataReflectionParameter $arg ) {
  $details = "";
  $name  = $arg->getName();
  $class = $arg->getClass();

  if ! empty$class )  ) {
    $classname = $class->getName();
    $details .= "$$name must be a $classname objectn"
  }
  if $arg->allowsNull() ) {
    $details .= "$$name can be nulln"
  }
  if $arg->isPassedByReference() ) {
    $details .= "$$name is passed by referencen"
  }
  return $details;
}

?>


           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Class
» Reflection Constructor