FLO-appStore/apps/Aterna-Love/florincoin-explorer/lib/api.php
sairajzero bf43539e3d update
2018-08-19 22:06:29 +05:30

12 lines
204 B
PHP

<?
function api_exit($data) {
ob_start();
echo $data;
$size = ob_get_length();
header('Content-type: application/json');
header("Content-Length: $size");
ob_end_flush();
exit();
}
?>