运行 ❯
获取你的
自己的 PHP
服务器
×
更改方向
更改主题,深色/浅色
转到空间
<!DOCTYPE html> <html> <body> <?php abstract class ParentClass { // Abstract method with an argument abstract protected function prefixName($name); } class ChildClass extends ParentClass { // The child class may define optional arguments that is not in the parent's abstract method public function prefixName($name, $separator = ".", $greet = "Dear") { if ($name == "John Doe") { $prefix = "Mr"; } elseif ($name == "Jane Doe") { $prefix = "Mrs"; } else { $prefix = ""; } return "{$greet} {$prefix}{$separator} {$name}"; } } $class = new ChildClass; echo $class->prefixName("John Doe"); echo "<br>"; echo $class->prefixName("Jane Doe"); ?> </body> </html>
尊敬的约翰·多先生
尊敬的简·多女士