我對OOP很陌生,在PHP上很生疏。我想知道這是否是從類調用函數的有效方法?類中的PHP調用函數 - 有沒有更簡單的方法?
class newclass {
public function testfunc {
return '1';
}
}
我可以這樣稱呼它:
echo testfunc->newclass();
或像這樣:
echo newclass()::testfunc;
我總是看到它實施例中定義如下圖所示,它似乎是額外的代碼?:
$this = new newclass();
$this->testfunc();
echo $this;
任何幫助將grea因爲我剛剛開始圍繞這個面向對象的事情而感到欣慰。如果我外出吃午飯,也許有人可能會建議一個真正的好的指導,爲一個真正的初學者在課堂/面向對象的鏈接。謝謝!
http://php.net/manual/en/language.oop5.php – NullUserException