Inline Tags Manual
Welcome to the phpDocumentor Inline Tags Manual
Unlike regular tags (see phpDocumentor tags), Inline tags display in the text flow where they appear. As of version 1.2, there are several inline tags. The allowed inline tag list is different for tutorials and regular in-code documentation.
Inline tags allowed in both tutorials and DocBlocks include:
Inline tags allowed in only DocBlocks include:
Inline tags allowed in only tutorials include:
The example below will display the text "this function works heavily with foo() to rule the world" where foo() represents a hyperlink that links to the function foo()'s documentation.
- /**
- * inline tags demonstration
- *
- * this function works heavily with {@link foo()} to rule the world. If I want
- * to use the characters "{@link" in a docblock, I just use "{@}link." If
- * I want the characters "{@*}" I use "{@}*}"
- */
- function bar()
- {
- }
-
- function foo()