Answers for "php call protected function from child class"

PHP
0

php call protected function from child class

class adminpanel extend myadmin {

    public function index() {
        $this->_layouts();
        // or 
        parent::_layouts();
    }

}
Posted by: Guest on May-02-2020

Code answers related to "php call protected function from child class"

Browse Popular Code Answers by Language