私は持っている:
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(|
//追加//
Netbeans は m = myClass をネイティブに理解していないので、次のようなものだと思います。
$m = newClass();
/* @ var m = class newClass */
/* now nb can list the args when typing.. */
$m->test(
よろしく