我想知道這是否可能,儘管我完全相信也許有更好的方法。我有這個腳本結構:從一個函數內部調用一個函數php oop
class Mother {
public function __construct() {
// script here
}
public function writer() {
if() {
// if true
} else {
// call function hello
}
}
public function hello() {
echo "Hello there.";
}
}
如何從writer()調用hello()?謝謝。
感謝您提供非常快速的反饋,請問這是最佳方法嗎? –
是的,這幾乎是唯一的方法,除非你靜態使用類,在這種情況下,請參考我更新後的文章中的例子,否則'$ this'是訪問同一類中的函數的最佳方式。 – Nexerus
只需幾分鐘,非常有啓發性,非常感謝Nexerus。 –