예제 #1
0
 public function displayText()
 {
     echo 'second ' . $this->text . '<br />';
     parent::displayText();
 }
예제 #2
0
파일: autoload.php 프로젝트: beingvarun/php
<?php

//usage of autoload.php
include_once 'autoloader.php';
$test1 = new Test1();
$test2 = new Test2();
$test3 = new Test3();
$test4 = new First('Johns');
echo $test4->beat();