我有一個應用程序,我必須聲明(覆蓋)從接口繼承的方法。但是,這些方法具有在我的實現中未使用的參數。PHP:我如何最好地關閉未使用變量的警告?
class MyImplementation implements ISomething {
public function foo($bar) {
// code that does nothing with $bar
...
}
// other methods
...
}
如何在源代碼中將$ bar標記爲未使用,在C++中這是可能的。
換句話說,我怎麼能在PHP中做THIS?
你可以嘗試'$欄= $酒吧;' – RiggsFolly
你在哪裏看到這個警告? – Ray
@RiggsFolly:謝謝我會試試看。 – Michal