mirror of
https://github.com/php/presentations.git
synced 2026-04-25 16:28:17 +02:00
17 lines
228 B
PHP
17 lines
228 B
PHP
<?php
|
|
abstract class dali {
|
|
abstract function paint();
|
|
}
|
|
|
|
class sterling extends dali {
|
|
function paint() {
|
|
echo "this is corny ";
|
|
echo "impressionism humor.";
|
|
echo "\n<br />\n";
|
|
}
|
|
}
|
|
|
|
$s = new sterling;
|
|
$s->paint();
|
|
?>
|