Posted by palle on 01/23/07 11:38
Bosconian wrote:
> I've looked everywhere (including php.net) and can't seem to find the answer
> to this simple question.
>
> What's the difference between var and private when initializing a variable
> in a class?
>
> For example:
>
> class myClass {
>
> var $var1;
> private $var2;
>
var is used in PHP4
it is still supported in PHP5, and is equal to public
Navigation:
[Reply to this message]
|