aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/json.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/json.php')
-rw-r--r--test/data/json.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/data/json.php b/test/data/json.php
deleted file mode 100644
index d6e0f2fc7..000000000
--- a/test/data/json.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-error_reporting(0);
-if ( $_REQUEST['header'] ) {
- header("Content-type: application/json");
-}
-
-$json = $_REQUEST['json'];
-if($json) {
- echo '[ {"name": "John", "age": 21}, {"name": "Peter", "age": 25 } ]';
-} else {
- echo '{ "data": {"lang": "en", "length": 25} }';
-}
-?>