Class yourclass
{ function foo()
{
$this->my_foo_local = 10;
} function bar($var_bar)
{
return $this->my_foo_local+$var_bar+1;
}}
$object = new yourclass(); $object->foo(); echo $object->bar(12);
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

