<?php
class a{
var $str;
function fone($strIn){
$this->str = $strIn;
}
}
class b extends a{
function ftwo($strIn){
$this->fone($strIn);
}
function output(){
echo $this->str;
}
}
$b = new b;
$b->ftwo('testing');
$b->output();
?>
No hay comentarios.:
Publicar un comentario