test-php-text-lighter/api/components/get-history.php
2023-03-08 01:10:34 +03:00

16 lines
302 B
PHP

<?php
error_reporting(E_ERROR | E_PARSE);
include "database-controller.php";
function getHistory () {
$result = getRequestHistory();
if (count($result) == 0) {
return "Записи отсутствуют";
}
else {
return "Запросы: \n". implode("\n", $result);
}
}
?>