php-general | 2005051
Date: 05/13/05
- Next message: Andre Dubuc: "Re: [PHP] 'Require' and 'Select' lists"
- Previous message: brujah <email protected>: "[PHP] Hello, I'm new..."
- Maybe in reply to: Shaw, Chris - Accenture: "[PHP] Problem with extending classes."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> -----Original Message-----
> From: Shaw, Chris - Accenture [mailto:cshaw <email protected>]
> Sent: Friday, May 13, 2005 12:10 PM
> To: php-general <email protected>
> Subject: [PHP] Problem with extending classes.
> Have I missed something or is there bugs with extending classes in
php5?
> Does this happen in php4.3?
$this->$name = $this->ksplit($name);
$this->$contactcontact = $this->ksplit($contact);
$this->$address = $this->ksplit($address);
Regardless of inheriting or not it should be:
$this->name = $this->ksplit($name);
$this->contactcontact = $this->ksplit($contact);
$this->address = $this->ksplit($address);
-- Med venlig hilsen / best regards ComX Networks A/S Kim Madsen Systemudvikler/Systemdeveloper-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Andre Dubuc: "Re: [PHP] 'Require' and 'Select' lists"
- Previous message: brujah <email protected>: "[PHP] Hello, I'm new..."
- Maybe in reply to: Shaw, Chris - Accenture: "[PHP] Problem with extending classes."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

