Dmitry wrote:
> Greetings.
>
> If i run this code (php5):
> ------------------------------------------
> class a {
>  function say() { echo "A"; }
>  function run() { $this->say(); }
> }
> class b extends a {
//>  function say() { echo "B"; }

function say() { parent::say(); echo "B";}

>  function run() { parent::run(); }
> }
>
> $obj = new b;
> $obj->run();
> ---------------------------------------
>
> I will get "B", but how i may get "A"?


-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to