x
 
<!DOCTYPE html>
<html>
<body>
<?php
class Fruit {
  final public function intro() {
  }
}
class Strawberry extends Fruit {
  // 会导致错误
  public function intro() {
  }
}
?>
 
</body>
</html>