Es simple, lo que te indica GatorV funcionaría así:
Código PHP:
class link2text extends link{ // clase Link a texto
private $anchor;
function __construct($url,$anchor){
parent::__construct($url);
$this->anchor = $anchor;
}
function dame_anchor($anchor){
return $this->anchor;
}
function __toString(){
return "<a href='$this->url' $this->title >$this->anchor </a>";
}
}
$link = new link2text('http://www.ejemplo.com', 'Mi Ejemplo!');
$link->add_title('Esto es un ejemplo');
echo $link; // mostrará: <a href='http://www.ejemplo.com' title='Esto es un ejemplo' >Mi Ejemplo!</a>