mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
8 lines
250 B
PHP
8 lines
250 B
PHP
<?php
|
||
require_once(__DIR__ . '/PHP8/seo.php');
|
||
require_once(__DIR__ . '/PHP8/author.php');
|
||
require_once(__DIR__ . '/PHP8/page.php');
|
||
|
||
$page = new PHP8\Page('О нас', 'Содержимое страницы');
|
||
$page->authors(); // Author::authors()
|