<html>
<body>
interface Animal {
public function makeSound();
}
class Cat implements Animal {
public function makeSound() {
echo "Meow";
}
}
$animal = new Cat();
$animal->makeSound();
</body>
<!-- /php/phptryit.asp?filename=tryphp_interface Thu, 06 Feb 2025 19:26:35 GMT -->
</html>