ReflectionClass 是在 PHP 的哪个版本中引入的?
ReflectionClass 是在 PHP 的哪个版本中引入的?
例如:
$objMetaData = new ReflectionClass('Direction');
$arrValidDirections = $objMetaData->getConstants();
What version of PHP was ReflectionClass introduced in?
for example:
$objMetaData = new ReflectionClass('Direction');
$arrValidDirections = $objMetaData->getConstants();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据PHP5的变更日志,反射API是在PHP 5.0的第二个测试版中引入的。 0。
我想 ReflectionClass 是在同一时间引入的,但我不确定。
According to the changes log for PHP5, the reflection API was introduced in the second beta of PHP 5.0.0.
i suppose that ReflectionClass was introduced in the same time, but I'm not sure.