Hopefully the title made sense and hopefully my question does as well.
So I need to instantiate a Sql class at the start of every page on my site so all other classes can have a valid mysql resource to do queries, updates, etc. without creating multiple Sql objects. However, currently my classes extend an abstract class for different implementations of functions based on the class context.
Question: In a child of the abstract class, could I use parent::_construct to bypass the abstract superclass and instantiate the Sql class from which the abstract extends?
EX.
class Sql {
function _construct() {
//get valid db resource
}
function query() {
//// query code
}
}
abstract class Display extends Sql {
function show() {
return $this->displayRecipe();
}
abstract function getRecipe();
}
class Members extends Display {
function __construct() {
parent::__construct();
}
function getRecipe($member_id) {
return $this->query("select * from recipes where member=$member_id");
}
}
As you can see I neet to use the function query() of the Sql class which is a granparent class now. However, with the abstract class in the middle, would this throw an exception and break?