__CONSTRUCT in PHP subclass

I have the following two classes.Settings:\[code\]/* Settings */class Settings{ function __CONSTRUCT(){ echo "Settings Construct"; }}/* PageManager */class PageManager extends Settings{ function __CONSTRUCT(){ echo "PageManager Construct"; }}$page = new PageManager();\[/code\]I thought that would work fine, but it only runs PageManager's construct. I'm guessing it's because I override the Setting's function. Is there some way I can call the original function?
 
Top