Nieuw lid |
|
Volgens mij werkt het in PHP5 als volgt:
class classname
{
var $attribute;
function __get($name)
{
return $this->$name;
}
function __set($name, $value)
{
$this->$name = $value
}
}
class classname { var $attribute; function __get($name) { return $this->$name; } function __set($name, $value) { $this->$name = $value } }
Om $attribute te 'accessen'
Khoop dat je hier iets aan had |