$variable
y esto:
$this->variable=$variable;
$this->variable;
Pero cual de los dos son mas recomendables, ya que asi trabaj normal sin $this:
Código PHP:
class title
{
function __construct($direccion)
{
$expresion="<title>(.*)</title>";
$url=fopen($direccion, "r");
while (!feof ($url))
{
$cadena = fgets ($url, 1024);
if (eregi ($expresion, $cadena, $out))
{
$title = $out[1];
echo $title;
echo "\n";
break;
}
}
fclose($url);
}
}