1

我正在使用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;
    }
}

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

4

2 回答 2

1

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

$details = new details();
echo $details->username;  // will put 'username' on the screen
于 2012-10-24T19:22:06.957 回答
0
$details = new details();

$username = $details->username;
于 2012-10-24T19:22:05.480 回答