我可以/如何...在 PHP 中调用类外部的受保护函数
我有一个在某个类中定义的受保护函数。我希望能够在另一个函数中的类之外调用此受保护的函数。这是否可能,如果是这样,我该如何实现它
class cExample{
protected function funExample(){
//functional code goes here
return $someVar
}//end of function
}//end of class
function outsideFunction(){
//Calls funExample();
}