web-utils/modules/httpbin/httpbin.php

10 lines
115 B
PHP
Raw Normal View History

2021-08-08 19:23:49 +02:00
<?php
$data = resumeRequest();
header("Content-Type: application/json");
$str = json_encode($data);
echo $str;