dbms_primeidc/extdbms/total_counting.php
2025-03-20 18:38:28 +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());
}