RE: [PHP-DOC] birthday class

2004-02-11 Thread Steph
Egon and Zeev are twins?

wild..

> -Original Message-
> From: Gabor Hojtsy [mailto:[EMAIL PROTECTED]
> Sent: 11 February 2004 19:09
> To: Cornelia Boenigk
> Cc: PHP DOC
> Subject: Re: [PHP-DOC] birthday class
> 
> 
> >  > class benutzer
> > {
> > var $name;
> > var $gebjahr;
> > 
> > function setName ($name)
> > {
> > $this->name = $name;
> > }
> > 
> > function getName ()
> > {
> > return $this->name;
> > }
> > 
> > function setgebjahr ($gebjahr)
> > {
> > $this ->gebjahr = $gebjahr;
> > }
> > 
> > function getAge ()
> > {
> > return date ("Y") - $this->gebjahr;
> > }
> > }
> > 
> > $user = new benutzer;
> > $user->setName ("Egon");
> > $user->setgebjahr(1954);
> > 
> > if (date('d.m.Y') == "12.02.2004") {
> > echo "Hallo " . $user->getName() . "Happy BirthdayBest
> > wishes for Your " . $user->getAge() . ". birthday";
> > }
> > ?>
> 
> What if we extend the class a bit to store the exact birth date, so it 
> would be able to trigger the echo on Egons birthdays? :) I would also 
> like to join and wish a happy birthday to Egon!
> 
> Goba


Re: [PHP-DOC] birthday class

2004-02-11 Thread Gabor Hojtsy

function setName ($name)
{
$this->name = $name;
}
function getName ()
{
return $this->name;
}
function setgebjahr ($gebjahr)
{
$this ->gebjahr = $gebjahr;
}
function getAge ()
{
return date ("Y") - $this->gebjahr;
}
}
$user = new benutzer;
$user->setName ("Egon");
$user->setgebjahr(1954);
if (date('d.m.Y') == "12.02.2004") {
echo "Hallo " . $user->getName() . "Happy BirthdayBest
wishes for Your " . $user->getAge() . ". birthday";
}
?>
What if we extend the class a bit to store the exact birth date, so it 
would be able to trigger the echo on Egons birthdays? :) I would also 
like to join and wish a happy birthday to Egon!

Goba