mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-13 14:45:09 +00:00
9 lines
279 B
PHP
9 lines
279 B
PHP
<?php
|
|
require_once 'article_author_seo.php';
|
|
|
|
$obj = new Article('Заголовок', 'Содержимое');
|
|
|
|
$obj->setAuthor(['Дмитрий Котеров', 'Игорь Симдянов']);
|
|
$obj->seo('SEO-заголовок');
|
|
echo $obj->title(); // SEO-заголовок
|