反射api

<?php

class A

{

  public function call()

  {

    echo "hello world";

  }

}

$ref = new ReflectionClass('A');

$inst = $ref->newInstanceArgs();

$inst->call();

 

输出: hello world

posted @ 2017-04-10 18:38  牛奶无花果  阅读(83)  评论(0编辑  收藏  举报