Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
$report = new StiReport();
$report->engine = StiEngineType::ServerNodeJS;
$report->process();
$report->loadFile('reports/SimpleList.mrt');
$report->render();
$result = $report->exportDocument(StiExportFormat::Text);
if ($result !== false) echo "<pre>$result</pre>";engine = StiEngineType::ServerNodeJS — renders headlessly with the Node.js engine, no browser required.render() — builds the document on the server.exportDocument(StiExportFormat::Text) — returns the exported data on the server for saving or sending.exportDocument returns the exported data on the server, so you can generate PDFs, spreadsheets or text files in a background job without any client.