I read about a feature of PHP5 OOP that is something like this in a book
or
a magazine a while back. But now I don't remember exactly how this works
and I can't find any reference to it in the online docs. The basic idea
is
something along these lines:
class MyClass {
private $bob;
public $Bob {
set( $var ) {
$this->bob = $var;
}
get() {
return $this->bob;
}
}
}
Could someone point me to the relevant section of the docs that discusses
this?
http://us2.php.net/class
Any particular place on that page I should be looking? I've read it several
times and didn't see anything like the above. The closest thing I saw were
actual methods called setBob() and getBob(), which isn't exactly what I'm
looking for...
thnx,
Chris
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php