Сихронизация с актуальной версией.

This commit is contained in:
2022-08-11 13:38:38 +03:00
parent 9306b5f5d8
commit 6cd7b13db0
315 changed files with 27411 additions and 40772 deletions

22
err.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
$str = '';
foreach (file(1) as $line) {
$class = strstr($line, 'Insallah')? 'i' : '';
$class .= strstr($line, 'Notice')? 'n' : '';
if (!strstr($line, 'Insallah') && isset($_GET['my'])) continue;
$str .= "<li><span class='$class'>$line</span></li>";
}
?>
<!DOCTYPE html>
<html lang=ru>
<meta charset=UTF-8/>
<style>
li {font-family: "Fira Code Light", Consolas, monospace; margin: 5px 0;}
li:hover {background-color: lavender;}
.i {font-style: italic; background-color: lightgoldenrodyellow}
.n {color: silver;}
</style>
<title></title>
<ol><?= $str ?></ol>