https://echo.apipost.cn/get.php,想要官方的这个get.php文件做调试,我自己配置怎么配都配不出这个效果
<?php
header("Content-type:application/json;charset=utf-8");
$_data = [];
$_data['errcode'] = 0;
$_data['errstr'] = 'success';
$_data['post'] = $_POST;
$_data['get'] = $_GET;
$_data['request'] = $_REQUEST;
$_data['file'] = $_FILES;
$_data['put'] = file_get_contents("php://input");
$_data['header'] = getallheaders();
$_data['cookie'] = $_COOKIE;
$_data['bigint'] = 248963637882912768;
echo json_encode($_data, JSON_UNESCAPED_UNICODE);
exit();