PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
If I have an abstract class, I assume since it can't be instantiated there is no constructor for the class. I want to make sure each class that extends from this abstract class defines a constructor. Does that mean I need to define an abstract method called __construct() in my abstract class to force this?