inherited methods
[email protected] (Dariusz Malinowski)
| Newsgroups | php.version4 |
|---|---|
| Message-ID | <[email protected]> |
hello all,
sorry, if this question showed up on the list before, but ... :-/
how can i call method from super class ? ie.:
class A {
function show ()
{
...
}
}
class B extends A {
function show ()
{
//inherited show () (from A)
...
}
}
thx in advance
dariusz malinowski