- Home
- Categorie
- Coding e Sistemistica
- PHP
- Problema con classe
-
Problema con classe
Ciao a tutti, ho la seguente classe:
[PHP]class EggHuntPass extends Pass{
// 1) the pass configuration is
// bundled in the class
private $keyPath = "pass";
private $sourcePath = "pass/source";
private $keyPassword = "12345";
static $passTypeID = "pass.com.marcotardanico.generico";// 2) autoconfigures the object and
// calls the original Pass constructorfunction __construct() {
$this->keyPath = realpath(dirname(FILE)."/../".$this->keyPath);
$this->sourcePath = realpath(dirname(FILE)."/../".$this->sourcePath);
parent::__construct($this->sourcePath);
} ... [/PHP]
Vorrei che il valore di $sourcePath mi cambi in base ad un valore estratto dal DB. Solo che non riesco ad estrarre il valore prima del costruttore e quindi non so come modificare quel valore. Sapete darmi qualche dritta per favore?Grazie