2007. 03. 6, kedd keltezéssel 20.08-kor Nicholas Yim ezt írta:
> Hello Everyone,
> 
>     [code]
>     class MyClass {
>       private $prop;
>     }
>     $obj=new MyClass;
>     [/code]
>     
>     is there anyway to read and write MyClass->prop, except serialize

write methods to do this

class MyClass {
        private $prop;

        function getProp() {
                return $this->prop;
        }

        function setProp($val) {
                $this->prop = $val;
        }
}

greets
Zoltán Németh

> 
> Best regards, 
>   
> Nicholas Yim
> [EMAIL PROTECTED]
> 2007-03-06
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to