Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 225459
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T19:24:56+00:00 2026-05-11T19:24:56+00:00

I have several CONST’s defined on some classes, and want to get a list

  • 0

I have several CONST’s defined on some classes, and want to get a list of them. For example:

class Profile {
    const LABEL_FIRST_NAME = "First Name";
    const LABEL_LAST_NAME = "Last Name";
    const LABEL_COMPANY_NAME = "Company";
}

Is there any way to get a list of the CONST’s defined on the Profile class? As far as I can tell, the closest option(get_defined_constants()) won’t do the trick.

What I actually need is a list of the constant names – something like this:

array('LABEL_FIRST_NAME',
    'LABEL_LAST_NAME',
    'LABEL_COMPANY_NAME')

Or:

array('Profile::LABEL_FIRST_NAME', 
    'Profile::LABEL_LAST_NAME',
    'Profile::LABEL_COMPANY_NAME')

Or even:

array('Profile::LABEL_FIRST_NAME'=>'First Name', 
    'Profile::LABEL_LAST_NAME'=>'Last Name',
    'Profile::LABEL_COMPANY_NAME'=>'Company')
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T19:24:56+00:00Added an answer on May 11, 2026 at 7:24 pm

    You can use Reflection for this. Note that if you are doing this a lot you may want to looking at caching the result.

    <?php
    class Profile {
        const LABEL_FIRST_NAME = "First Name";
        const LABEL_LAST_NAME = "Last Name";
        const LABEL_COMPANY_NAME = "Company";
    }
    
    
    $refl = new ReflectionClass('Profile');
    print_r($refl->getConstants());
    

    Output:

    Array
    (
        'LABEL_FIRST_NAME' => 'First Name',
        'LABEL_LAST_NAME' => 'Last Name',
        'LABEL_COMPANY_NAME' => 'Company'
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have several members in my class which are const and can therefore only
I have several identical string constants in my program: const char* Ok() { return
I have several constants that I use, and my plan was to put them
In several places I have to retrieve some value from a dict, but need
I have found this example on StackOverflow: var people = new List<Person> { new
I'm working on some C++ code where I have several manager objects with private
I have a class that contains a private typedef and several member functions: class
I have a project that contains several submodules, that communicate using some objects that
Hey there, I want to evaluate a mathematical function (user-defined) which returns several values
I have some constants in JavaScript that I'd like to reuse in several files

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.