我有:
class myClass {
function test($arg1,$arg2) {
echo $arg1 & $arg2;
}
}
$m = new myClass();
//can I use any kind of annotation to get argument-list of
$m->test(|
// // ADD
我想Netbeans本身并不了解m = myClass,所以像
$m = newClass();
/* @ var m = class newClass */
/* now nb can list the args when typing.. */
$m->test(
问候
答案 0 :(得分:3)
如果您需要每个参数的注释,请使用phpdoc注释(NetBeans为您自动完成):
输入
/**
在函数定义上方的行上,然后点击enter
键。 NetBeans将自动在您的函数上方空间中编写phpdoc注释。如果您的函数中有return
,那么也将为此编写phpdoc:
/**
*
* @param type $arg1
* @param type $arg2
* @return type
*/
function myFunc($arg1, $arg2) {
$test = "";
return $test;
}
然后,您只需将type
替换为参数的数据类型,并在参数名称后面添加注释。
答案 1 :(得分:0)
在路上找到[ctrl] + [space],
$m->test|