/**
* 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的泡沫中有效?
答案 0 :(得分:0)
我相信你正在寻求回应$ val。
您的功能应如下:
echo "<code><tag>".$val."</tag></code>";
请参阅http://www.w3schools.com/php/func_string_echo.asp,以便将变量写入网页。