Answered Questions

  • What type of inheritance that php supports

    Chari

    • Dec 7th, 2017

    Inheritances are 4type, 1) single Inheritance, 2) Multiple Inheritance, 3) Multi level Inheritance, 4) Hybrid Inheritance.
    PHP will supoort only Single, Multi level, and Hybrid.
    Multiple Inheritance is not supported by PHP

    ketan mahajan

    • May 4th, 2016

    PHP does not support multiple inheritance.
    It supports single, multilevel, hierarchical inheritance.
    But now php achieve multiple inheritance using trait concept of php.