vote up 5 vote down star

Just a quick question: I've seen that some PHP functions are commented at the top, using a format that is unknown to me:

/**
 *
 * Convert an object to an array
 *
 * @param    object  $object The object to convert
 * @return      array
 *
 */

My IDE gives me a dropdown selection for the things such as @param and @return, so it must be documented somewhere. I've tried searching google but it won't include the @ symbol in its search.

What is this format of commenting and where can I find some information on it?

flag

55% accept rate
Which IDE do you use Zim? – Mr. Smith Aug 21 at 4:23

1 Answer

vote up 8 vote down check

That's phpDoc syntax.

Read more here: phpDocumentor

link|flag
Looks like a copy of javadoc. – Matt H Aug 21 at 4:30
It's the same idea, just for PHP instead of Java. – Josh Leitzel Aug 21 at 4:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.