dbms_itsolution/extdbms/total_counting.php
2021-12-08 09:31:10 +09:00

11 lines
198 B
PHP

<?php
namespace lib\Controller;
require_once "lib/autoload.php";
try {
$statistics = new Statistics();
return $statistics->execute();
} catch (\Exception $e) {
die($e->getMessage());
}