我在命名函数时遇到了麻烦。我有一堂课,我需要 2 个函数,如下所示。
class myclass {
public function tempclass () {
echo "default";
}
public function tempclass ( $text ) {
echo $text;
}
}
当我打电话
tempclass('testing'); // ( called after creating the object )
function tempclass()
被调用我如何才能拥有 2 个名称相同但参数不同的函数?