Curt Zirzow wrote:
* Thus wrote Stephen Sadowski:
http://us4.php.net/manual/en/language.oop5.abstract.php
The short is that you can't do anything more than define a function in
an abstract class.
Negative. It is perfectly fine to have code within an abstract
class. The documentation needs
> From: Stephen Sadowski <[EMAIL PROTECTED]>
> Subject: Re: [PHP] php5 and object
>
> http://us4.php.net/manual/en/language.oop5.abstract.php
>
> The short is that you can't do anything more than define a function in
> an abstract class.
>
> IIRC, ch
* Thus wrote Stephen Sadowski:
> http://us4.php.net/manual/en/language.oop5.abstract.php
>
> The short is that you can't do anything more than define a function in
> an abstract class.
Negative. It is perfectly fine to have code within an abstract
class. The documentation needs to get expanded a
A change to interface gives me such error :
Interface function Strona::foo() cannot contain body
Krzysztof Gorzelak
[EMAIL PROTECTED]
Uzytkownik "Stephen Sadowski" <[EMAIL PROTECTED]> napisal w
wiadomosci news:[EMAIL PROTECTED]
> http://us4.php.net/manual/en/language.oop5.abstract.php
>
> The s
http://us4.php.net/manual/en/language.oop5.abstract.php
The short is that you can't do anything more than define a function in
an abstract class.
IIRC, change abstract to interface, and you'll probably be okay.
On Wed, 28 Jul 2004 21:18:26 +0200, Krzysztof Gorzelak <[EMAIL PROTECTED]> wrote:
> H
Hello,
I'm trying to make this code to work:
// start of code
abstract class Strona {
abstract public function generuj_strone();
function foo() {
generuj_strone();
}
}
class Katalog extends Strona {
public function generuj_strone() {
echo "OK";
}
}
$bar
6 matches
Mail list logo