Files
php_8/methods/page.php
2022-05-02 09:09:39 +03:00

23 lines
356 B
PHP

<?php
class Page
{
static $content = 'about<br />';
public static function footer()
{
return 'footer<br />';
}
public static function header()
{
return 'header<br />';
}
public static function render()
{
echo self::header() .
self::$content .
self::footer();
}
}