I am looking to port some java code to PHP. I am looking at interfaces in PHP 5 and wondering if they support 'interface . extends .'. For example I have interface C and it extends Interface A and B..
<?php
interface C extends A, B {
.
}
?>
Thanks,
Brandon

