web-utils/modules/httpbin/httpbin.php

10 lines
115 B
PHP
Raw Normal View History

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