Вопрос

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!

Это было полезно?

Решение

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

Другие советы

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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top