Jump to content

$this


Guest askjames01

Recommended Posts

Guest askjames01
as part of my review just like i said before i want to make my understanding solid...

here it goes again...

[code]$this[/code]

is this code built in with php? i mean is this reserved with php?
the answer must be Yes or No?

if yes then it means i can't use them as user define variable, because they are reserved. right?
Link to comment
https://forums.phpfreaks.com/topic/9029-this/
Share on other sites

Yes the variable $this is predifined variable within PHP. It is used in conjuction with classes to set/call a variable/function when in side class.

You cannot use the variable $this in your scripts no.

However, you can use either of the following $This, $ThIs, $THIS etc. As PHP is case sensitive with variables. And so php doesn't see $This as $this.
Link to comment
https://forums.phpfreaks.com/topic/9029-this/#findComment-33286
Share on other sites

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.