在功能二中,您可以像这样访问它:
function MyFuncTwo() {
print $this -> var; // Just access it, its a member variable of the same class
}
该变量对于从此类继承的其他类是私有的(无法访问),但可以从其他成员函数完全访问。
编辑默认构造函数
如果你想将值设置为 40 而不首先调用函数,你可能需要一个默认构造函数。
见: http: //php.net/manual/en/language.oop5.decon.php
简单地:
class MyClass {
//declaring private variable:
private $var = '';
// This is the default constructor, it gets called when you create the object
function __construct() {
$this -> var = "40";
}
function MyfuncOne(){
$this->var = "40";
}
function MyfuncTwo(){
}
function get_var() {
return $this -> var;
}
}
然后当你制作你的对象时,它将被设置为“40”:
$obj = new MyClass();
print "The object's var is " . $obj -> get_var(); // Notice we didn't have to call MyFuncOne(), it's just set.