<?php interface i { // function foo($k, $j, $l); function foo(); function hoo(); } interface j { function goo(); function foo(); } class x implements i, j { function foo() {} function goo() {} function hoo() {} } new x;
You have javascript disabled. You will not be able to edit any code.