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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T11:57:40+00:00 2026-05-12T11:57:40+00:00

How can you describe the parameters and return type (getter/setter) of your PHP functions?

  • 0

How can you describe the parameters and return type (getter/setter) of your PHP functions?

I need to tell my moderator the return type and list the parameters for each function.
I have hundreds of functions so this is becoming problem, since I need to do this for every single revision.

I use at the moment the following procedure

  1. ack-grep "function " > /tmp/functions
    2 . in Vim:

    • %s/\d//g, %s/{//, %s/://g
    • `%s/.*.php/\U&/
    • then putting the Uppercase filename to the beginning of the list of functions of each file
    • put functions to one file and the parameters to another file such that the linenumbers match
    • create a third file where you write either setter or getter for the corresponding line
  2. paste -d"&" /tmp/{functions,functions_param,functions_type}
  3. add LaTeX formatting to each set of functions of each file
  • 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-12T11:57:40+00:00Added an answer on May 12, 2026 at 11:57 am

    Use something like phpdoc.

    Basically you add special comments to your code:

    /**
     * A sample function docblock
     * @global string document the fact that this function uses $_myvar
     * @staticvar integer $staticvar this is actually what is returned
     * @param string $param1 name to declare
     * @param string $param2 value of the name
     * @return integer 
     */
    function firstFunc($param1, $param2 = 'optional') {
        static $staticvar = 7;
        global $_myvar;
    
        return $staticvar;
    }
    

    and it automatically generates HTML documentation for it.

    Basically the idea behind this is to make a programmer’s life easier, and allow writing in-line API documentation without having to spend a lot of time at it.

    There are some IDEs that also understand this, and will show the documentation while you are using it. For example, the function:

    /** Retrieve the action key
     * @return string
     */
    function isValid($value) {
      ....
    }
    

    Shows this in Zend studio: http://static.zend.com/topics/code-assist.png

    Especially if you’re using an IDE like this (there are others besides Zend that do it), you’ll likely find yourself naturally documenting every function and parameter, because it helps you while you’re coding anyways.

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

Sidebar

Ask A Question

Stats

  • Questions 234k
  • Answers 234k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You need to assign a hotkey to the Rollback action… May 13, 2026 at 6:03 am
  • Editorial Team
    Editorial Team added an answer If you can't change the database, then you're on the… May 13, 2026 at 6:03 am
  • Editorial Team
    Editorial Team added an answer I solved this problem eventually. It was happening because of… May 13, 2026 at 6:03 am

Related Questions

Consider an ASP.NET MVC 1.0 project using the Areas convention as described on this
The current trend in web applications seems to be towards using GET requests for
I am facing some strange behavior with file-name completion in emacs. C-x C-f to
At my company we're starting to branch into web APIs to access and update

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.