class1.php
Código PHP:
class show{
function showme() {
echo 'Hello World';
}
}
Código PHP:
class get{
private $display;
function __construct(){
$this->display = new show();
}
function showmeHelloWorld() {
$this->display->showme();
}
}
$showTime = new get;
$showTime->showmeHelloWorld();