Answers for "call parent in php"

PHP
1

php call parent constructor

<?php
class BaseClass {
   function __construct() {
       print "En el constructor BaseClass\n";
   }
}

class SubClass extends BaseClass {
   function __construct() {
       parent::__construct();
       print "En el constructor SubClass\n";
   }
}
Posted by: Guest on April-12-2021
0

parent in php

parent:: is the special name for parent class which when
  used in a member function.To use the parent to call 
  the parent class constructor to initialize the parent class so that 
  the object inherits the class assignment to give a name. 
    NOTE: PHP does not accept parent as the name of a function.
Posted by: Guest on July-12-2021

Code answers related to "call parent in php"

Browse Popular Code Answers by Language