Alain Roger schreef:
> thanks a lot, this is exactly what i needed.
> if the construct of based class A accept arguments, i guess that construct
> of class B must have the sames.
> moreover, i guess that something like that must be written:
I guess you find guessing preferable to RTFM and/or trying code out.
> class A
> {
> function __construct($nameA)
> {
> ...
> }
> }
>
> class B extends A
> {
> function __construct($nameB)
> {
> parent::__construct($nameB);
> }
> }
>
> am i right ?
are you?
>
> thanks.
>
> A.
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php