Jump to content

Strange problems with PHP4 (OOP)


olegk

Recommended Posts

[quote author=sanfly link=topic=106006.msg423695#msg423695 date=1156808950]
...
should the line in red be:
...
[/quote]

No, that's the point. If it were $this->$b, I would expect the code to print "AB", but I print out $this-$a twice, and for some reason the second time it turns into "B"
To access your vars that is in the same class/function you need to use $this->[b]youVarNameHere[/b] just as drkstr pointed out above. This is the same for PHP4 and PHP5.
You do not put the dollar sign after $this-> you just the name of the variable, ie $this->a

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.