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 7578021
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T17:19:55+00:00 2026-05-30T17:19:55+00:00

I would like to have access to the methods by ReflectionMethod: $r = new

  • 0

I would like to have access to the methods by ReflectionMethod:

$r = new ReflectionMethod($class, $method);
$params = $r->getParameters();

and if parameters are required ($Option), get source of that method to prepare the parameters:

public function GetFeedback($Options) {
    $this->checkConnection();
    return $this->_client->doGetFeedback(
        $Options['feedback-from'],
        $Options['feedback-to']
    );
}

so in my example to find $Option keys – ‘feedback-from’ and ‘feedback-to’

  • 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-30T17:19:56+00:00Added an answer on May 30, 2026 at 5:19 pm

    Assuming a class like

    class Foo
    {
        public function GetFeedback($Options) {
            $this->checkConnection();
            return $this->_client->doGetFeedback(
                $Options['feedback-from'],
                $Options['feedback-to']
            );
        }
    }
    

    this code will do what you ask for

    $reflector = new ReflectionMethod('Foo', 'GetFeedback');
    $methodBody = implode(
        '',
        iterator_to_array(
            new LimitIterator(
                new SplFileObject($reflector->getFileName()),
                $reflector->getStartLine(),
                $reflector->getEndLine() - $reflector->getStartLine()
            )
        )
    );
    foreach ($reflector->getParameters() as $parameter) {
        if (!$parameter->isOptional()) {
            preg_match_all(
                sprintf('{\$%s\[[\'"](.*)[\'"]\]}', $parameter->getName()),
                $methodBody,
                $matches
            );
        }
        print_r($matches);
    }
    

    Output:

    Array
    (
        [0] => Array
            (
                [0] => $Options['feedback-from']
                [1] => $Options['feedback-to']
            )
    
        [1] => Array
            (
                [0] => feedback-from
                [1] => feedback-to
            )
    )
    

    However, the only valid usage for this approach IMO is to generate a docblock listing these options and agree that you are likely doing it wrong if you need this in production code.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class in my asp.net proj, I would like to get access
I would like to have access to the Seconds_Behind_Master field, (as returned by SHOW
I would like to have direct access to the text inside a textbox on
i dont have microsoft access but would like to open an mdb file, is
I have a Data Access Object TransactionDao. When you call TransactionDao.Save(transaction) I would like
I have a list of objects and I would like to access the objects
We have a project (Web/PHP) where we would like users to access their files,
I have an IEnumerable object. I would like to access based on index for
I have a directory with 500,000 files in it. I would like to access
I have a class that contains a member object. I would like to call

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.