faqts : Computers : Programming : Languages : PHP : kms : Classes

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

34 of 51 people (67%) answered Yes
Recently 10 of 10 people (100%) answered Yes

Entry

Does PHP have multiple inheritence?
Can a class have two parents?

Jul 7th, 1999 06:59
Nathan Wallace, Kristian Köhntopp


PHP is single inheritance. That is, you cannot do

    parent_a   parent_b
           |   |
           child

but you can do

    parent_b
       |
    parent_a
       |
    child