Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

extend multiple classes in php

// this is NOT allowed
Matron extends Nurse, HumanEntity
  
You cannot have a class that extends two base classes. You could not have.

You could however have a hierarchy as follows...

Nurse extends HumanEntity 
Matron extends Nurse
 
PREVIOUS NEXT
Tagged: #extend #multiple #classes #php
ADD COMMENT
Topic
Name
7+4 =