Ben referans smarty değişkeni değiştirerek bir sorun yaşıyorum. İşte yapmak çalışıyorum budur:
class foo {
$property;
public function getProperty(){
return $this->$property;
}
public function index(&$smarty){
$smarty->assign('test',$this->getProperty());
}
}
$smarty = new Smarty();
$foo = new foo();
$foo->index($smarty);
$smarty->display("test.tpl");