首页 > 代码库 > 反射api

反射api

<?php

class A

{

  public function call()

  {

    echo "hello world";

  }

}

$ref = new ReflectionClass(‘A‘);

$inst = $ref->newInstanceArgs();

$inst->call();

 

输出: hello world

反射api