the editor 1.VS CODE is easy to use and fast to use. Many functions can be completed by installing plug-ins, but I can"t find the plug-ins for the configured PHP function comment headers, as shown in figure
.at present, after pressing the / * + spacebar after writing the function, the default comment header is nothing:
/**
*
*/
function test($id = 1)
{
return 1;
}
/** + :
/**
*
* @Description
* @param int $id
* @return int
* @example
* @author Lizhijian
* @since 2018/7/5 15:03
*/
function test($id = 1)
{
return 1;
}
2. I found that there is very little information about the configuration comment headers of VS CODE on Baidu. Some of them use code snippets and try them, but there is no effect and no trigger
.
Doxygen Documentation GeneratorPHP
but I still didn"t trigger
.