我尝试了网上可用的所有技巧,但不知道为什么,我无法访问变量..继承人包含私有变量的类的片段:
class PANASONIC_PRICESHEET {
public $models = array();
public $options = array();
public $accessories = array();
private $identifier = '';
private $name = '';
private $currency1 = '€';
private $currency2 = '£';
/**
*
*/
public function __construct($name1 = 'unnamed', $identifier1 = '') {
$this->name = $name1;
$this->identifier = $identifier1;
}
public function getIdentifier() {
return $this->identifier;
}
/**
*
*/
public function getName($withIdentifier = false) {
if ($withIdentifier) {
return $this->name . " - " . $this->identifier;
} else {
return $this->name;
}
}
}
以下是我访问它的方式:
$thisName = $pricesheet->getName();
$thisIdentifier = $pricesheet->getIdentifier();
我收到了这个错误:
Fatal error: Cannot access private property PANASONIC_PRICESHEET::$name in
C:\AppServ\www\dashboard\sites\all\modules\_custom\pricing_system\pricing_system.inc
on line 316
如何解决这个问题?我不能把领域PUBLIC,它根本不是一个选择。请提出任何建议。
问题已经解决: 我想要调用$ _pricesheet-> getName(); 非常感谢您的建议。
答案 0 :(得分:0)
目前这对我有用。看看here。您可能可能正在尝试访问$pricesheet->name;
答案 1 :(得分:0)
您可以尝试在Public函数中调用私有函数,该函数返回私有变量。 与Javascript中的闭包类似。
希望它有效