Я использую этот код, и он возвращает мне URL-адрес, он выглядит нормально и создает папку в public/sre_reports/
Но после URL-адреса я не вижу, что делать:
public function generatePublicReport()
{
try {
$report = new ReportOptions(Constants::SRE_PUBLIC_REPORT);
$report->select_tables(array("users"))
->set_grouping(array("id"))
->select_all_fields();
$engine = new CustomEngine($report);
$report_path = $engine->create_report();
return "Your report URL:" . $report_path;
} catch (Exception $ex) {
echo "Caught exception message:". $ex->getMessage();
}
}
OutPut : URL вашего отчета: https://domainname.com/var/www/html/folder/public/sre_reports/rep1592553829503324/rep1592553829503324.php