Page 1 of 1

Is there a command that helps to understand what the functio

Posted: Thu Jan 25, 2007 3:31 pm
by Betty_S
Hi

Is there a command that helps to understand what the function does?

Let's say that I know only the name of the function,
Who can I know what argument that function expects and what it does?

Thanks
:)

Posted: Thu Jan 25, 2007 3:33 pm
by feyd
Same answer to your other thread applies here too.

Posted: Fri Jan 26, 2007 12:42 am
by volka
But there's no command to get an explaination. The documentation is not included in the php code.
If it's a function of the php core or an extension take a look at the online manual, http://www.php.net/manual/

Posted: Fri Jan 26, 2007 3:11 am
by CoderGoblin
If they are functions/methods you built, at the time of building it is a good idea to document/annotate the function. A useful tool for documentation is PhpDoc which can help build a "website" of documentation.