Exemplo n.º 1
0
    private $ubicacion;
    public function inicializar($tit, $ubi)
    {
        $this->titulo = $tit;
        $this->ubicacion = $ubi;
    }
    public function graficar()
    {
        echo '<div style="font-size:40px;text-align:' . $this->ubicacion . '">';
        echo $this->titulo;
        echo "</div>";
    }
}
$cabecera = new CabeceraPagina();
$cabecera->inicializar('Ingenieria de sistemas', 'center');
$cabecera->graficar();
class Pagina
{
    private $titulo;
    private $ubicacion;
    public function __construct($tit, $ubi)
    {
        $this->titulo = $tit;
        $this->ubicacion = $ubi;
    }
    public function graficar()
    {
        echo '<div style="font-size:40px;text-align:' . $this->ubicacion . '">';
        echo $this->titulo;
        echo "</div>";
    }