Ben aracılığıyla sonra, atamak ve PHP sınıf değişkenleri kullanmak için kısa, iyi ya da temiz bir yolu olup olmadığını merak $this->instance_variable
? Edildi
class Bar {
# internal variables
var $foo = "Hello World";
public function foo() {
return $this->foo;
}
}
I am not very familiar with all PHP's variable scoping, but from what I understood at the official docs, you can either define them global, or access them trough $this->
?
Is there a keyword to define them as instance variable, so they are accessible like Rubys @variable?