Tagged Questions

1
vote
2answers
50 views

Is is possible to instantiate the parent of an abstract class in the child of the abstract class in PHP?

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 ...
0
votes
2answers
83 views

PHP Call Superclass Factory Method from Subclass Factory Method

I am writing a php app with subclasses and since I want to have multiple ways to create an object I am doing different factory methods instead of multiple constructors. I have a User with factory ...
0
votes
2answers
205 views

Making a superclass object become a sublcass object in PHP5

<?php class A{ //many properties protected $myProperty1; protected $myProperty2; protected $myProperty3; public function __construct(){ ...