我有下面的代碼:問題與PHP OOP
class the_class {
private the_field;
function the_class() {
the_field = new other_class(); //has other_method()
}
function method() {
$this->the_field->other_method(); //This doesn't seem to work
}
}
這有什麼錯在這裏的語法?方法調用似乎總是返回true,就好像方法調用有問題一樣。 或者是方法調用所有權利,我應該調試other_method()本身?
TIA,彼得
非常感謝你。完成了! 我是盲人,呃? ;-)對不起。 – 2010-07-21 11:42:39
你仍然可能想接受已花時間回覆的人的回答。 – 2010-07-21 16:02:31