Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
7b110a0b
authored
2014-06-04 22:09:43 +0800
by
CurveSoft
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
remove httplib_test.php
1 parent
e3033b57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
26 deletions
httplib/httplib_test.php
httplib/httplib_test.php
deleted
100644 → 0
View file @
e3033b5
<?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>";
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment