Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does PHP have an option to mark a variable as an instance variable or class variable or local variable inside a class?

Ruby has the following options:

Local variable   ->  myvar
Instance variable->  @myvar 
Class variable   ->  @@myvar 

Is there any such option in PHP other than this lengthy $myvar, $this->myvar and self::$myvar?

I asked like this because I'm from ruby on rails background. There it was so easy to handle variables like as i gave above. In PHP the variable handling style didn't felt so handy. So I referred a docs a lot times. But didn't find any so I asked if I missed any such option in the docs and anyone else may have noticed it.

share|improve this question

closed as not constructive by nickb, John Conde, Neal, Jack, JaredMcAteer Jan 17 at 14:55

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 4 down vote accepted

No, there are no such options in PHP.

share|improve this answer
$this->variable; //class var
ClassName::variable; //static var
$variable; //local var

Other than the above there is no other way to declare a variable (unless you want to use constants define('VARIABLE', "some constant");)

share|improve this answer
3  
"other than this lengthy $myvar, $this->myvar and self::$myvar" – eggyal Jan 17 at 14:21
@eggyal see my edit. – Neal Jan 17 at 14:22

Not the answer you're looking for? Browse other questions tagged or ask your own question.