文档注释中的html代码

时间:2012-08-08 17:07:10

标签: php html xml documentation

/**
 * tag generation
 * @param string $val value
 * @return string Returns in mode <code><tag>$val</tag></code>
 */
function tag($value) {
...
}

问题是如何在IDE中正确显示的doc-comment(例如eclipse)中正确编写'$ val'(必须是'&lt;'和'&gt;')。

我在图像中显示了这样的问题。怎么写,在IDE的泡沫中有效? enter image description here

1 个答案:

答案 0 :(得分:0)

我相信你正在寻求回应$ val。

您的功能应如下:

echo "<code><tag>".$val."</tag></code>";

请参阅http://www.w3schools.com/php/func_string_echo.asp,以便将变量写入网页。