PHP:通过反射ReflectionClass获取类中的所有常量
【摘要】
<?php
class Demo
{
// 定义常量
const STATUS_HIDDEN = 0;
const STATUS_SHOW = 1;
pub...
<?php
class Demo
{
// 定义常量
const STATUS_HIDDEN = 0;
const STATUS_SHOW = 1;
public static function getConstants()
{
$objClass = new \ReflectionClass(__CLASS__);
return $objClass->getConstants();
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
输出结果
$data = Demo::getConstants();
var_dump($data);
// array(2) {
// ["STATUS_HIDDEN"]=>
// int(0)
// ["STATUS_SHOW"]=>
// int(1)
// }
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
static静态方法不能使用继承,应该使用trait,才能正常获取当前类 __CLASS__
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/122359463
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)