Can a class extend both an interface and another class in PHP?
Basically I want to do this:
interface databaseInterface{
public function query($q);
public function escape($s);
//more methods
}
class database{ //extends both mysqli and implements databaseInterface
//etc.
}
How would one do this, simply doing:
class database implements databaseInterface extends mysqli{
results in a fatal error:
Parse error: syntax error, unexpected T_EXTENDS, expecting '{' in *file* on line *line*
yes, in fact if you want to implement multiple interfaces you can do like this:
Try it the other way around:
This should work.
Yes it can. You just need to retain the correct order.
Moreover, a class can implement more than one interface. Just separate 'em with commas.
However, I feel obliged to warn you that extending mysqli class is incredibly bad idea. Inheritance per se is probably the most overrated and misused concept in object oriented programming.
Instead I'd advise doing db-related stuff the mysqli way (or PDO way).
Plus, a minor thing, but naming conventions do matter. Your class
database
seems more general thenmysqli
, therefore it suggests that the latter inherits fromdatabase
and not the way around.