Archived
1
0
Fork 0
This repository has been archived on 2020-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
news-script/parser.php

25 lines
486 B
PHP

<?php
require "vendor/autoload.php";
require "game.php";
require "apero.php";
require "hyperbook.php";
require "instead.php";
require "storymaze.php";
use PHPHtmlParser\Dom;
$dom = new Dom;
$period = strtotime("1 week ago");
$formatter = new IntlDateFormatter( 'ru', IntlDateFormatter::LONG, IntlDateFormatter::NONE );
function startSection($name) {
echo "<h4> $name </h4>\n<ul>\n";
}
function endSection() {
echo "</ul>\n";
}
//apero();
//instead();
//storymaze();
hyperbook();