コード例 #1
0
ファイル: index.php プロジェクト: memphys/epic_one_more
 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();