我正在使用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;
}
}
现在我的问题是我如何访问这些变量 - 如果我这样做,他们将拥有在构造中定义的值吗?
答案 0 :(得分:1)
只需创建类并使用已创建实例的属性:
$details = new details();
echo $details->username; // will put 'username' on the screen
答案 1 :(得分:0)
$details = new details();
$username = $details->username;