pasha_v
Guest
буферизация
Господа нужна Ваша помощь!
Помогите со следующем кодом:
возможно-ли как-нибудь достучаться до переменной $title?
Господа нужна Ваша помощь!
Помогите со следующем кодом:
PHP:
class Functions
{
var $string;
function Functions($string){
$this->string=$string;
return true;
}
function doEval (){
ob_start();
eval ($this->string);
$this->string = ob_get_contents();
ob_end_clean();
return $this->string;
}
}
$s_out = '$title=\"rulez\"';
$output = new Functions($s_out);
$s_out = $output->doEval($s_out);