我怎样才能获得在类中定义的变量并在其他地方使用它

时间:2012-10-24 19:19:31

标签: php class codeigniter

我正在使用codeignighter。

我有一个类,我需要在其他地方使用一些变量。

例如:

 class details{

public $username;
public $current_uID;
public $member_status;

    public function __construct(){
         $this->username = 'username';
         $this->current_uID = 21;
         $this->member_status = 1;
    }
}

现在我的问题是我如何访问这些变量 - 如果我这样做,他们将拥有在构造中定义的值吗?

2 个答案:

答案 0 :(得分:1)

只需创建类并使用已创建实例的属性:

$details = new details();
echo $details->username;  // will put 'username' on the screen

答案 1 :(得分:0)

$details = new details();

$username = $details->username;