Question

In php, why do people sometimes have things like

param mixed $value

as comment in their code (usually found in Object-Oriented PHP)? When should you write that yourself and how exactly should you use it?
Thanks!

Était-ce utile?

La solution

It's used by IDEs to auto-generate tooltips and documentation, usually based on Javadoc.

Autres conseils

It is written to be used with documentation generation tools and with IDEs autocompletion.

mixed means it can accept several data types of the param.

It's a standardized way of formatting comments. You can read more about it here: http://www.phpdoc.org/about

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top