首页 > 其他 > 详细

返回当前类所有常量的Key=>value 集合

时间:2017-11-14 16:55:57      阅读:299      评论:0      收藏:0      [点我收藏+]
<?php

class Test
{
    const A = ‘1‘;
    const B = ‘2‘;
    const C = ‘3‘;
    const D = ‘4‘;
    const E = ‘5‘;
    const F = ‘6‘;

    public static function all()
    {
        $static = new static();
        $class = new \ReflectionClass($static);
        $constants = $class->getConstants();
        return $constants;
    }
}

var_dump(Test::all());
//打印结果如下:
//array (size=6)
//  ‘A‘ => string ‘1‘ (length=1)
//  ‘B‘ => string ‘2‘ (length=1)
//  ‘C‘ => string ‘3‘ (length=1)
//  ‘D‘ => string ‘4‘ (length=1)
//  ‘E‘ => string ‘5‘ (length=1)
//  ‘F‘ => string ‘6‘ (length=1)

  

返回当前类所有常量的Key=>value 集合

原文:http://www.cnblogs.com/spectrelb/p/7833327.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!