Disable error reporting in PHP test files
This commit is contained in:
parent
9b0aaeebea
commit
8ec860d637
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
error_reporting(0);
|
||||||
$json = $_REQUEST['json'];
|
$json = $_REQUEST['json'];
|
||||||
if($json) {
|
if($json) {
|
||||||
echo '[ {"name": "John", "age": 21}, {"name": "Peter", "age": 25 } ]';
|
echo '[ {"name": "John", "age": 21}, {"name": "Peter", "age": 25 } ]';
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
error_reporting(0);
|
||||||
$wait = $_REQUEST['wait'];
|
$wait = $_REQUEST['wait'];
|
||||||
if($wait) {
|
if($wait) {
|
||||||
sleep($wait);
|
sleep($wait);
|
||||||
|
|
Loading…
Reference in a new issue