if($condition){
$i = $i + 1;
}
else
{
$i = $i - 1;
}
如何在phpDoc中记录一个简单的if,else条件?
答案 0 :(得分:1)
会是这样的:
if ($condition)
{
/**
* This will increase counter
*/
$i = $i + 1;
} else
{
/**
* This will decrease counter
*/
$i = $i - 1;
}
请参阅doc:http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_tags.ignore.pkg.html