1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-25 06:44:13 +00:00

remove httplib_test.php

This commit is contained in:
CurveSoft 2014-06-04 22:09:43 +08:00
parent e3033b57a6
commit 7b110a0b73

View File

@ -1,26 +0,0 @@
<?php
session_id() or session_start();
if (!isset($_SESSION['first_time'])) {
$_SESSION['first_time'] = time();
}
$data = array();
$HTTP = array();
foreach ($_SERVER as $head => $value) {
if (strpos($head, "HTTP_") === 0) {
$HTTP[$head] = $value;
}
}
$data['HTTP'] = $HTTP;
$data['GET'] = $_GET;
$data['POST'] = $_POST;
$data['REQUEST'] = $_REQUEST;
$data['SESSION'] = $_SESSION;
$data['COOKIE'] = $_COOKIE;
$data['FILES'] = $_FILES;
$data['SERVER'] = $_SERVER;
$data['ENV'] = $_ENV;
//echo json_encode($data);
//echo "<pre>";
print_r($data);
//echo "</pre>";