Posted by zdzisio on 11/01/07 14:38
Philluminati pisze:
> int $tablename = 0;
>
> rather than
>
> var $tablename = 0;
>
> Is it possible?
no .
of course you can do something like
public $tablename = (int)0;
but this does not prevent asigning value of a different type to that
variable.
that's the way it is
> If not, do you all go back to using hungarian notation in order to
> know what data types your working
I do
z.
[Back to original message]
|