diff options
-rw-r--r-- | build/test/data/json.php | 1 | ||||
-rw-r--r-- | build/test/data/name.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/build/test/data/json.php b/build/test/data/json.php index 31668cf29..08e3f9e32 100644 --- a/build/test/data/json.php +++ b/build/test/data/json.php @@ -1,4 +1,5 @@ <?php
+error_reporting(0);
$json = $_REQUEST['json'];
if($json) {
echo '[ {"name": "John", "age": 21}, {"name": "Peter", "age": 25 } ]';
diff --git a/build/test/data/name.php b/build/test/data/name.php index d73abc784..7f77a0b28 100644 --- a/build/test/data/name.php +++ b/build/test/data/name.php @@ -1,4 +1,5 @@ <?php
+error_reporting(0);
$wait = $_REQUEST['wait'];
if($wait) {
sleep($wait);
|