<?php interface TestInterface { function testMethod(); }
class TestClass implements TestInterface { function testMethod() { return "インタフェースの実装!!"; } }
$obj = new TestClass(); print $obj->testMethod() . "\n"; ?>
●実行結果 インタフェースの実装!!