使用ReflectionClass就可以获取未知类的详细信息
demo:
require("hello.php");$class = new ReflectionClass("hello");//参数为类名echo "".$class."";
本文共 176 字,大约阅读时间需要 1 分钟。
使用ReflectionClass就可以获取未知类的详细信息
demo:
require("hello.php");$class = new ReflectionClass("hello");//参数为类名echo "".$class."";
转载于:https://www.cnblogs.com/blueskycc/p/5478085.html