Files
anpdf/app/routes/generation.php
2023-06-13 16:54:49 +03:00

12 lines
144 B
PHP

<?php
function generation_kuri(){
ob_start();
index_kuri();
$result = ob_get_contents();
ob_end_flush();
echo $result;
}