web-utils/modules/httpbin/httpbin.php
2021-08-08 19:23:49 +02:00

9 lines
115 B
PHP

<?php
$data = resumeRequest();
header("Content-Type: application/json");
$str = json_encode($data);
echo $str;