编程语言
首页 > 编程语言> > php 获取当前文件中的类名

php 获取当前文件中的类名

作者:互联网

<?php
namespace Demo;
use Think\core;

class Hello{

}
echo '<pre>';
print_r(get_declared_classes());
/**
array(
    [0]=> stdClass
    ...
    [143] => Redis
    [144] => RedisArray
    [145] => RedisCluster
    [146] => RedisException
    [147] => RedisClusterException
    [148] => Demo\Hello
)
*/

  

标签:...,declared,RedisClusterException,Redis,RedisException,获取,array,php,类名
来源: https://www.cnblogs.com/tochw/p/16180186.html