9 lines
115 B
PHP
9 lines
115 B
PHP
<?php
|
|
|
|
$data = resumeRequest();
|
|
|
|
header("Content-Type: application/json");
|
|
|
|
$str = json_encode($data);
|
|
|
|
echo $str;
|