Posted by wozozo on 01/25/08 10:10
hello.
i'm using PDT. But, complement does not work well.
Please see the following codes.
--------------------------------------------------------------------
class A {
public $a;
public function __construct() {
$this->a = new B();
}
}
class B {
public $b;
public function funcB() {
echo 'classB';
}
}
$obj = new A();
$obj->a->
--------------------------------------------------------------------
after this I want to complement "" funcB() "" .
But It is not complemented even if it pushes Ctrl+Space.
" $obj->a" is complemented.
Can't this complement be performed in PDT?
Navigation:
[Reply to this message]
|