No crees ke en la clase Singleton deveria haver una 2 funciones para que funcione
Código PHP:
function setValor($str){
$this->valor = $a;
}
function getValor(){
return $this->valor;
}
quedando la clase singleton asi?
Código PHP:
<?php
class Singleton {
static private $instance;
private function __construct() {}
static function getInstance() {
if (!isset(self::$instance)) {
$c = __CLASS__;
self::$instance = new $c;
}
return self::$instance;
}
public function setValor($str){
$this->valor = $a;
}
public function getValor($str){
return $this->valor;
}
}
?>
o me ekivoco corrigueme!!