actually now that i've said that i don't think it's true.
possibly ignore me.
(he says 1 month after OP asked the question..)
User Profile
Collapse
-
to force the call of a parent constructor you can use the 'final' keyword on the parents constructor.
of course, this means it can NEVER be overwritten, so use with caution.
[PHP]
class A {
final function __construct ($my,$args){
die("i've been called");
}
}
class B extends A{
}
$myobj = new B("hello", "world");...Leave a comment:
No activity results to display
Show More
Leave a comment: