PHP class
class c { var $v; function c($i) { $this->v = $i; } function f() { echo $this->v; } } $o = new c('o'); $o->f(); //o ...
http://qindex.info/i.php?x=2618

-