Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 7 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | error_reporting(0); |
3 | if ( $_REQUEST['header'] ) { |
4 | header("Content-type: application/json"); |
5 | } |
6 | |
7 | $json = $_REQUEST['json']; |
8 | if($json) { |
9 | echo '[ {"name": "John", "age": 21}, {"name": "Peter", "age": 25 } ]'; |
10 | } else { |
11 | echo '{ "data": {"lang": "en", "length": 25} }'; |
12 | } |
13 | ?> |