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

  • SEARCH
  • Home
  • 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 7514703
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T00:34:47+00:00 2026-05-30T00:34:47+00:00

Using PHP’s ReflectionClass. Is this possible? I want to get a list of methods

  • 0

Using PHP’s ReflectionClass. Is this possible?

I want to get a list of methods and the defined variables and if possible their default values too.

$reflection = new \ReflectionClass($var);
$methods = $reflection->getMethods(\ReflectionMethod::IS_PUBLIC);

print_r($methods); // only method names here :(
  • 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-30T00:34:49+00:00Added an answer on May 30, 2026 at 12:34 am

    Use the ReflectionParameter::getDefaultValue() method. With your code example:

    $reflection = new \ReflectionClass($var);
    $methods = $reflection->getMethods(\ReflectionMethod::IS_PUBLIC);
    $methodParameters = array();
    
    foreach ($methods as $method) {
        $parameters = $method->getParameters();
        foreach ($parameters as $parameter) {
            $name = $method->getName() . '::' . $parameter->getName();
            $methodParameters[$name] = null;
            if ($parameter->isOptional()) {
                $methodParameters[$name] = $parameter->getDefaultValue();
            }
        }
    }
    

    An example:

    class a {
    
            public function methodOne() {
            }
    
            public function methodTwo($param) {     
            }
    
            public function methodThree($param = 'foo') {
            }
    
    }
    
        $var = new a();
    
        $reflection = new \ReflectionClass($var);
        $methods = $reflection->getMethods(\ReflectionMethod::IS_PUBLIC);
        $methodParameters = array();
    
        foreach ($methods as $method) {
            $parameters = $method->getParameters();
            foreach ($parameters as $parameter) {
                $name = $method->getName() . '::' . $parameter->getName();
                $methodParameters[$name] = null;
                if ($parameter->isOptional()) {
                    $methodParameters[$name] = $parameter->getDefaultValue();
                }
            }
        }
        var_dump($methodParameters);
    
    // results in this array:
    
    array(2) {
      ["methodTwo::param"]=>
      NULL
      ["methodThree::param"]=>
      string(3) "foo"
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using PHP and MySQL I'm trying to get all the distinct values out the
Using php or javascript I want to get the title of the page Any
Using PHP, what's the fastest way to convert a string like this: 123 to
Using PHP, I am trying to delete a record, but I want to check
Using PHP, it's possible to read off the contents of a file using fopen
Using PHP ... This is for my personal use so I'm thinking maybe 3-4
Using php-sdk I obtain pages in this way: $array = $this->instance->api( '/' . $fb_user
Using php i wants to make a join query across 2 database. This is
Using php and mysql (and Drupal), I want to generate an index based on
Using PHP, how do I get an entire subset of nodes from an XML

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.