1<?php 2 3class b extends a { 4 public function test() { 5 echo __METHOD__ . "()\n"; 6 parent::test(); 7 } 8} 9